frontend/style/topbar.css

112 lines
1.8 KiB
CSS
Raw Normal View History

2023-09-28 11:08:15 +00:00
.tabs li {
display: inline-block;
padding-right: 8px;
2023-09-28 11:08:15 +00:00
}
.tabs li a {
position: relative;
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;
}
.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
}
.center-x {
text-align: center;
2023-09-28 11:08:15 +00:00
}