2023-09-28 11:08:15 +00:00
|
|
|
.tabs li {
|
|
|
|
display: inline-block;
|
2023-09-28 13:43:44 +00:00
|
|
|
padding-right: 8px;
|
2023-09-28 11:08:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tabs li a {
|
|
|
|
position: relative;
|
2023-09-28 13:43:44 +00:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2023-09-28 16:04:29 +00:00
|
|
|
.tabs li:hover {
|
|
|
|
transition-duration: 250ms;
|
|
|
|
transform: translate(0, -10px);
|
|
|
|
}
|
|
|
|
|
2023-09-29 23:40:09 +00:00
|
|
|
.tabs li:hover .tab-svg-path {
|
|
|
|
fill: #2c3251;
|
|
|
|
stroke: #690455;
|
|
|
|
transition-duration: 250ms;
|
|
|
|
}
|
|
|
|
|
2023-09-28 13:43:44 +00:00
|
|
|
.tabs li button {
|
|
|
|
position: relative;
|
|
|
|
border: none;
|
|
|
|
background: none;
|
2023-09-28 11:08:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tab-svg-path {
|
|
|
|
position: absolute;
|
|
|
|
fill: #21253c;
|
|
|
|
stroke: #690455;
|
|
|
|
stroke-width: 4;
|
|
|
|
stroke-miterlimit: 10;
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-svg-text {
|
|
|
|
fill: #FFFFFF;
|
|
|
|
font-family: "Roboto";
|
|
|
|
font-size: 18px;
|
|
|
|
text-anchor: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tabs-main {
|
|
|
|
float: left;
|
|
|
|
margin-left: 32px;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tabs-account {
|
|
|
|
float: right;
|
2023-09-28 14:54:00 +00:00
|
|
|
margin-right: 24px;
|
2023-09-28 11:08:15 +00:00
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
2023-09-28 20:54:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.auth-container {
|
|
|
|
font: normal 18px Roboto;
|
|
|
|
position: fixed;
|
|
|
|
display: block;
|
|
|
|
right: 38px;
|
|
|
|
top: 86px;
|
|
|
|
border: 4px solid #690455;
|
|
|
|
border-radius: 12px;
|
|
|
|
width: 286px;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #191c2e;
|
|
|
|
color: #FFFFFF;
|
|
|
|
z-index: 10;
|
2023-09-29 23:40:09 +00:00
|
|
|
}
|
2023-09-28 20:54:33 +00:00
|
|
|
|
2023-09-29 23:40:09 +00:00
|
|
|
.auth-submit {
|
|
|
|
position: relative;
|
|
|
|
margin: 6px;
|
|
|
|
padding: 6px 12px;
|
|
|
|
text-align: center;
|
|
|
|
background: #21253c;
|
|
|
|
color: inherit;
|
|
|
|
border: 2px solid #690455;
|
|
|
|
border-radius: 6px;
|
|
|
|
font: inherit;
|
|
|
|
}
|
2023-09-28 20:54:33 +00:00
|
|
|
|
2023-09-29 23:40:09 +00:00
|
|
|
.auth-submit:hover, .auth-submit:focus {
|
|
|
|
background: #2c3251;
|
|
|
|
outline: none;
|
|
|
|
}
|
2023-09-28 20:54:33 +00:00
|
|
|
|
2023-09-29 23:40:09 +00:00
|
|
|
.auth-field {
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
2023-09-28 20:54:33 +00:00
|
|
|
|
2023-09-29 23:40:09 +00:00
|
|
|
.auth-input {
|
|
|
|
border: 2px solid #690455;
|
|
|
|
border-radius: 6px;
|
|
|
|
background: #21253c;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
font: normal 14px Roboto;
|
|
|
|
}
|
2023-09-28 20:54:33 +00:00
|
|
|
|
2023-09-29 23:40:09 +00:00
|
|
|
.auth-input:focus {
|
|
|
|
background: #2c3251;
|
|
|
|
outline: none;
|
2023-09-28 20:54:33 +00:00
|
|
|
}
|
|
|
|
|
2023-10-02 18:04:10 +00:00
|
|
|
.auth-status {
|
|
|
|
font: normal 14px Roboto;
|
|
|
|
color: #ff0000;
|
|
|
|
}
|
|
|
|
|
2023-10-08 13:51:42 +00:00
|
|
|
.auth-info {
|
|
|
|
font: normal 16px Roboto;
|
|
|
|
color: #ffffff;
|
|
|
|
margin: 6px 8px;
|
|
|
|
}
|
|
|
|
|
2023-09-28 20:54:33 +00:00
|
|
|
.center-x {
|
|
|
|
text-align: center;
|
2023-09-28 11:08:15 +00:00
|
|
|
}
|