[+] Improved Inventory System based on old Inventory Manager and new GUI. (test version)
This commit is contained in:
895
ReallifeGamemode.Client/assets/html/inventory/css/inventory.css
Normal file
895
ReallifeGamemode.Client/assets/html/inventory/css/inventory.css
Normal file
@@ -0,0 +1,895 @@
|
||||
@font-face {
|
||||
font-family: OSL;
|
||||
src: url(../font/OSL.ttf);
|
||||
}
|
||||
|
||||
* {
|
||||
-webkit-border-radius: 0;
|
||||
-moz-border-radius: 0;
|
||||
border-radius: 0;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0px auto;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.main2 {
|
||||
z-index: 2;
|
||||
background: #0c0c0cc4;
|
||||
position: absolute;
|
||||
padding-left: 100%;
|
||||
padding-top: 100%;
|
||||
}
|
||||
|
||||
.main {
|
||||
z-index: 1;
|
||||
background: #272727;
|
||||
position: absolute;
|
||||
left: 19vw;
|
||||
padding-left: 53vw;
|
||||
padding-top: 33vw;
|
||||
top: 5vw;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 2vw;
|
||||
position: absolute;
|
||||
color: #fff;
|
||||
font-family: 'OSL';
|
||||
left: 1vw;
|
||||
top: 0.2vw;
|
||||
background: #1b1b1b;
|
||||
}
|
||||
|
||||
.titletext {
|
||||
position: absolute;
|
||||
left: 21vw;
|
||||
background: #1b1b1b;
|
||||
padding-right: 22.7vw;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
z-index: 1;
|
||||
position: absolute;
|
||||
right: 72.5vw;
|
||||
cursor: pointer;
|
||||
z-index: 200;
|
||||
top: 9.5vw;
|
||||
}
|
||||
|
||||
.sidebaritem1 {
|
||||
z-index: 1;
|
||||
margin-bottom: 0.2vw;
|
||||
color: #fff;
|
||||
font-family: OSL;
|
||||
width: 6vw;
|
||||
background: #1b1b1b;
|
||||
height: 4vw;
|
||||
text-align: center;
|
||||
line-height: 6.1vw;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.sidebaritem2 {
|
||||
z-index: 1;
|
||||
margin-bottom: 0.2vw;
|
||||
color: #fff;
|
||||
font-family: OSL;
|
||||
width: 6vw;
|
||||
background: #1b1b1b;
|
||||
height: 4vw;
|
||||
text-align: center;
|
||||
line-height: 6.1vw;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.sidebaritem3 {
|
||||
z-index: 1;
|
||||
margin-bottom: 0.2vw;
|
||||
color: #fff;
|
||||
font-family: OSL;
|
||||
width: 6vw;
|
||||
background: #1b1b1b;
|
||||
height: 4vw;
|
||||
text-align: center;
|
||||
line-height: 6.1vw;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.sidebaritem4 {
|
||||
z-index: 1;
|
||||
margin-bottom: 0.2vw;
|
||||
color: #fff;
|
||||
font-family: OSL;
|
||||
width: 6vw;
|
||||
background: #1b1b1b;
|
||||
height: 4vw;
|
||||
text-align: center;
|
||||
line-height: 6.1vw;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.sidebaritem5 {
|
||||
z-index: 1;
|
||||
margin-bottom: 0.2vw;
|
||||
color: #fff;
|
||||
font-family: OSL;
|
||||
width: 6vw;
|
||||
background: #1b1b1b;
|
||||
height: 4vw;
|
||||
text-align: center;
|
||||
line-height: 6.1vw;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.sidebaritem6 {
|
||||
z-index: 1;
|
||||
margin-bottom: 0.2vw;
|
||||
color: #fff;
|
||||
font-family: OSL;
|
||||
width: 6vw;
|
||||
background: #1b1b1b;
|
||||
height: 4vw;
|
||||
text-align: center;
|
||||
line-height: 6.1vw;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.sidebaritem {
|
||||
z-index: 1;
|
||||
margin-bottom: 0.2vw;
|
||||
color: #fff;
|
||||
font-family: OSL;
|
||||
width: 6vw;
|
||||
background: #1b1b1b;
|
||||
height: 4vw;
|
||||
text-align: center;
|
||||
line-height: 6.1vw;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.items {
|
||||
position: absolute;
|
||||
left: 5.5vw;
|
||||
top: 2.5vw;
|
||||
cursor: default;
|
||||
width: 6vw;
|
||||
}
|
||||
|
||||
.item {
|
||||
}
|
||||
|
||||
ul {
|
||||
float: left;
|
||||
}
|
||||
|
||||
li {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.titlecount {
|
||||
position: absolute;
|
||||
font-size: 0.7vw;
|
||||
width: 16.3vw;
|
||||
top: 0vw;
|
||||
background: #1b1b1b;
|
||||
padding-top: 1.8vw;
|
||||
left: -1vw;
|
||||
padding-right: 10vw;
|
||||
padding-left: 0.2vw;
|
||||
}
|
||||
|
||||
.sideicon1 {
|
||||
padding-top: 0.2vw;
|
||||
}
|
||||
|
||||
.sideicon2 {
|
||||
padding-top: 0.2vw;
|
||||
}
|
||||
|
||||
.sideicon3 {
|
||||
padding-top: 0.2vw !important;
|
||||
}
|
||||
|
||||
.sideicon4 {
|
||||
padding-top: 0.2vw;
|
||||
}
|
||||
|
||||
.sideicon5 {
|
||||
}
|
||||
|
||||
.sideicon6 {
|
||||
}
|
||||
|
||||
.sideicon7 {
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.sideicon8 {
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.sideicon9 {
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.sideicon10 {
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.sideicon11 {
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.sideicon12 {
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.sideicon13 {
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.sideicon14 {
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.sideicon15 {
|
||||
width: 2vw;
|
||||
}
|
||||
|
||||
.sideicon16 {
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.sideicon17 {
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.sideicon18 {
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.sideicon7, .sideicon8, .sideicon9, .sideicon10, .sideicon11, .sideicon12, .sideicon13, .sideicon14, .sideicon15, .sideicon16, .sideicon17, .sideicon18 {
|
||||
position: absolute;
|
||||
left: 2.1vw;
|
||||
top: 0.6vw;
|
||||
}
|
||||
|
||||
.sideicon1, .sideicon2, .sideicon3, .sideicon4, .sideicon5, .sideicon6 {
|
||||
width: 2vw;
|
||||
padding-bottom: 1.8vw;
|
||||
}
|
||||
|
||||
.bartext {
|
||||
margin-top: -6.5vw;
|
||||
font-size: 0.8vw;
|
||||
}
|
||||
|
||||
.sidebaritem1:hover {
|
||||
background: #131313;
|
||||
}
|
||||
|
||||
.sidebaritem2:hover {
|
||||
background: #131313;
|
||||
}
|
||||
|
||||
.sidebaritem3:hover {
|
||||
background: #131313;
|
||||
}
|
||||
|
||||
.sidebaritem4:hover {
|
||||
background: #131313;
|
||||
}
|
||||
|
||||
.sidebaritem5:hover {
|
||||
background: #131313;
|
||||
}
|
||||
|
||||
.sidebaritem6:hover {
|
||||
background: #131313;
|
||||
}
|
||||
|
||||
li.item1 {
|
||||
}
|
||||
|
||||
li.item2 {
|
||||
top: -22vw;
|
||||
left: 9vw;
|
||||
}
|
||||
|
||||
li.item3 {
|
||||
top: -46vw;
|
||||
left: 16vw;
|
||||
}
|
||||
|
||||
li.item4 {
|
||||
top: -70vw;
|
||||
left: 23vw;
|
||||
}
|
||||
|
||||
li.item5 {
|
||||
top: -94vw;
|
||||
left: 30vw;
|
||||
}
|
||||
|
||||
li.item6 {
|
||||
top: -118vw;
|
||||
left: 37vw;
|
||||
}
|
||||
|
||||
.item1, .item2, .item3, .item4, .item5, .item6 {
|
||||
color: #fff;
|
||||
font-family: 'OSL';
|
||||
position: relative;
|
||||
margin-bottom: 2vw;
|
||||
color: #fff;
|
||||
font-family: OSL;
|
||||
width: 6vw;
|
||||
background: #1b1b1b;
|
||||
height: 4vw;
|
||||
text-align: center;
|
||||
line-height: 6.5vw;
|
||||
transition: 0.2s;
|
||||
font-size: 0.5vw;
|
||||
left: 2vw;
|
||||
top: 2vw;
|
||||
}
|
||||
|
||||
.show {
|
||||
display: show !important;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.green {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
width: 6vw;
|
||||
background: #55ff0096;
|
||||
height: 4vw;
|
||||
line-height: 1;
|
||||
top: -8vw;
|
||||
cursor: pointer;
|
||||
opacity: 0.0;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.green:hover {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
.red {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
width: 2.5vw;
|
||||
left: 3.5vw;
|
||||
background: #6d2525;
|
||||
height: 1.5vw;
|
||||
line-height: 1;
|
||||
top: -2.4vw;
|
||||
cursor: pointer;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.red:hover {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
.blue {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
width: 2.5vw;
|
||||
left: 0vw;
|
||||
background: #0d91af8c;
|
||||
height: 1.5vw;
|
||||
line-height: 1;
|
||||
top: -7.9vw;
|
||||
cursor: pointer;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.blue:hover {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
.blue2 {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
width: 2.5vw;
|
||||
left: 0vw;
|
||||
background: #0d91af8c;
|
||||
height: 1.5vw;
|
||||
line-height: 1;
|
||||
top: -3.9vw;
|
||||
cursor: pointer;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.blue2:hover {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
.redImg {
|
||||
width: 1.3vw;
|
||||
margin-top: 0.1vw;
|
||||
}
|
||||
|
||||
.blueImg {
|
||||
width: 1.3vw;
|
||||
margin-top: 0.1vw;
|
||||
}
|
||||
|
||||
.greenImg {
|
||||
width: 1.3vw;
|
||||
margin-top: 1.2vw;
|
||||
}
|
||||
|
||||
body select {
|
||||
display: block;
|
||||
padding: 10px 70px 11px 13px !important;
|
||||
margin-top: -29.9vw;
|
||||
margin-left: -30.6vw;
|
||||
height: auto !important;
|
||||
border: 1px solid #000000;
|
||||
border-radius: 3px;
|
||||
background: url(https://i.ibb.co/b7xjLrB/selectbox-arrow.png) right center no-repeat;
|
||||
background-color: #404040;
|
||||
color: #fffbfb;
|
||||
font-size: 12px;
|
||||
line-height: 12px !important;
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
}
|
||||
/* body select.select_box option */
|
||||
body select option {
|
||||
padding: 0 4px;
|
||||
}
|
||||
/* for IE and Edge */
|
||||
select::-ms-expand {
|
||||
display: none;
|
||||
}
|
||||
|
||||
select:disabled::-ms-expand {
|
||||
background: #f60;
|
||||
}
|
||||
|
||||
.Betrag {
|
||||
z-index: 2;
|
||||
background: rgba(0,0,0,0.6);
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: block;
|
||||
transform: translate(-50%, -50%);
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
}
|
||||
|
||||
.Betrag4 {
|
||||
z-index: 2;
|
||||
background: rgba(0,0,0,0.6);
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: block;
|
||||
transform: translate(-50%, -50%);
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
}
|
||||
|
||||
.Betrag3 {
|
||||
z-index: 2;
|
||||
background: rgba(0,0,0,0.6);
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: block;
|
||||
transform: translate(-50%, -50%);
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
}
|
||||
|
||||
.Betrag2 {
|
||||
z-index: 2;
|
||||
background: rgba(0,0,0,0.6);
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: block;
|
||||
transform: translate(-50%, -50%);
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
}
|
||||
|
||||
t#tf_nameorid {
|
||||
background-color: #313131;
|
||||
border: none;
|
||||
height: 1.2vw;
|
||||
width: 6vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
position: relative;
|
||||
left: -30.1vw;
|
||||
top: -29.9vw;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#tf_submitTrade {
|
||||
background-color: #267d00;
|
||||
border: none;
|
||||
height: 1.2vw;
|
||||
width: 4vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
font-color: white;
|
||||
position: relative;
|
||||
left: -30vw;
|
||||
top: -29.9vw;
|
||||
color: #ffffff;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#tf_submitTrade {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#tf_zahl {
|
||||
background-color: #313131; /* blau */
|
||||
border: none;
|
||||
height: 30px;
|
||||
width: 124px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
position: relative;
|
||||
left: 42%;
|
||||
top: 40%;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#tf_cancle {
|
||||
background-color: #ff0000;
|
||||
border: none;
|
||||
height: 32px;
|
||||
width: 124px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
font-color: white;
|
||||
position: relative;
|
||||
left: 33.7%;
|
||||
top: 44%;
|
||||
color: #ffffff;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#tf_submitZahl {
|
||||
background-color: #008CBA; /* blau */
|
||||
border: none;
|
||||
height: 32px;
|
||||
width: 124px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
font-color: white;
|
||||
position: relative;
|
||||
left: 42%;
|
||||
top: 40%;
|
||||
color: #ffffff;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#tf_submitZahl {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#tf_zahl4 {
|
||||
background-color: #313131;
|
||||
border: none;
|
||||
height: 1.5vw;
|
||||
width: 5vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 0.5vw;
|
||||
position: relative;
|
||||
left: 19vw;
|
||||
top: 13vw;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#tf_cancle4 {
|
||||
background-color: #ff0000;
|
||||
border: none;
|
||||
height: 0.9vw;
|
||||
width: 3vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
font-color: white;
|
||||
position: relative;
|
||||
left: 17.8vw;
|
||||
top: 9.4vw;
|
||||
color: #ffffff;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#tf_cancle4 {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#tf_submitZahl4 {
|
||||
background-color: #008CBA;
|
||||
border: none;
|
||||
height: 1.5vw;
|
||||
width: 8vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 0.5vw;
|
||||
font-color: white;
|
||||
position: relative;
|
||||
left: 21vw;
|
||||
top: 13vw;
|
||||
color: #ffffff;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#tf_submitZahl4 {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#tf_submitTrade {
|
||||
background-color: #009b03;
|
||||
border: none;
|
||||
height: 1.6vw;
|
||||
width: 4vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 0.5vw;
|
||||
font-color: white;
|
||||
position: absolute;
|
||||
color: #ffffff;
|
||||
top: 3vw;
|
||||
left: 29.3vw;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#tf_submitTrade:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#tf_cancle3 {
|
||||
background-color: #ff0000;
|
||||
border: none;
|
||||
height: 0.9vw;
|
||||
width: 3vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
font-color: white;
|
||||
position: relative;
|
||||
left: 17.8vw;
|
||||
top: 9.4vw;
|
||||
color: #ffffff;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#tf_cancle3:hover {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
#tf_cancle:hover {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
#tf_cancle2:hover {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
#tf_zahl3 {
|
||||
background-color: #313131;
|
||||
border: none;
|
||||
height: 1.5vw;
|
||||
width: 5vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 0.5vw;
|
||||
position: relative;
|
||||
left: 19vw;
|
||||
top: 13vw;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#tf_submitZahl3 {
|
||||
background-color: #008CBA;
|
||||
border: none;
|
||||
height: 1.5vw;
|
||||
width: 8vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 0.5vw;
|
||||
font-color: white;
|
||||
position: relative;
|
||||
left: 21vw;
|
||||
top: 13vw;
|
||||
color: #ffffff;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#tf_submitZahl3 {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.BoxBlue {
|
||||
background-color: #1b1b1b;
|
||||
height: 10vw;
|
||||
width: 20vw;
|
||||
position: relative;
|
||||
margin-top: 11vw;
|
||||
margin-left: 16vw;
|
||||
}
|
||||
|
||||
#tf_cancle2 {
|
||||
background-color: #ff0000;
|
||||
border: none;
|
||||
height: 1vw;
|
||||
width: 3vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 0.5vw;
|
||||
position: relative;
|
||||
left: 5.45vw;
|
||||
top: 0vw;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#tf_submitZahlToHandel {
|
||||
background-color: #008CBA;
|
||||
border: none;
|
||||
height: 1vw;
|
||||
width: 7vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 0.4vw;
|
||||
position: relative;
|
||||
left: -3vw;
|
||||
top: 7vw;
|
||||
color: #ffffff;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#tf_submitZahlToHandel:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#tf_submitZahlToVehicle {
|
||||
background-color: #008CBA;
|
||||
border: none;
|
||||
height: 1vw;
|
||||
width: 8vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 0.5vw;
|
||||
position: relative;
|
||||
left: 10.8vw;
|
||||
top: 5.95vw;
|
||||
color: #ffffff;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
#tf_submitZahlToVehicle:hover {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
#tf_zahl2 {
|
||||
background-color: #313131;
|
||||
border: none;
|
||||
height: 1vw;
|
||||
width: 4.3vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 0.5vw;
|
||||
position: relative;
|
||||
left: 7.5vw;
|
||||
top: 4.4vw;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
select.select_box2 {
|
||||
margin-top: -1vw;
|
||||
margin-left: 11.3vw;
|
||||
}
|
||||
|
||||
.blueIcon1 {
|
||||
position: relative;
|
||||
height: 3vw;
|
||||
margin-bottom: -4vw;
|
||||
margin-left: 13.4vw;
|
||||
}
|
||||
|
||||
.blueIcon2 {
|
||||
position: relative;
|
||||
height: 3vw;
|
||||
margin-bottom: -3.1vw;
|
||||
margin-left: 3.4vw;
|
||||
}
|
||||
|
||||
.blue3 {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
width: 2.5vw;
|
||||
left: 0vw;
|
||||
background: #0d91af8c;
|
||||
height: 1.5vw;
|
||||
line-height: 1;
|
||||
top: -2.45vw;
|
||||
z-index: 10000;
|
||||
cursor: pointer;
|
||||
opacity: 0.5;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.blue3:hover {
|
||||
opacity: 1
|
||||
}
|
||||
|
||||
|
||||
#tf_nameorid {
|
||||
background-color: #313131;
|
||||
border: none;
|
||||
height: 1.5vw;
|
||||
width: 6vw;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
position: absolute;
|
||||
left: 23vw;
|
||||
top: 3vw;
|
||||
color: #ffffff;
|
||||
}
|
||||
Reference in New Issue
Block a user