mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 13:48:51 +08:00
107 lines
1.5 KiB
CSS
107 lines
1.5 KiB
CSS
.nav-menu {
|
|
z-index: 100;
|
|
position: fixed;
|
|
background-color: white;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
left: -64px;
|
|
transition: all 0.5s ease;
|
|
height: 100vh;
|
|
max-width: 64px;
|
|
}
|
|
|
|
.nav-menu.open {
|
|
left: 0px;
|
|
}
|
|
|
|
.main {
|
|
position: relative;
|
|
top: 64px;
|
|
}
|
|
|
|
|
|
.settings {
|
|
margin: 0 18%;
|
|
padding-top: 40px;
|
|
transition: 0.6s;
|
|
}
|
|
|
|
|
|
.settings div.text {
|
|
width: 100%;
|
|
}
|
|
|
|
.settings label {
|
|
line-height: 40px;
|
|
}
|
|
|
|
.settings .mdc-text-field label {
|
|
line-height: revert;
|
|
top: 22px;
|
|
bottom: auto;
|
|
}
|
|
|
|
.settings #s-cookies .mdc-text-field {
|
|
min-width: 50%;
|
|
}
|
|
|
|
.settings div.text.helper {
|
|
display: flex;
|
|
}
|
|
|
|
.settings div.text.helper label {
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.settings div.text.helper.outlined label {
|
|
margin-top: 7px;
|
|
}
|
|
|
|
.settings div.text.outlined .mdc-text-field label {
|
|
top: 14px;
|
|
}
|
|
|
|
.settings div.text.outlined .mdc-text-field.mdc-text-field--focused label {
|
|
top: 22px;
|
|
}
|
|
|
|
.settings div.text.outlined.label {
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.settings .text-box {
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.settings .text-box .text {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.settings .text-box .text .mdc-text-field::after {
|
|
width: 0;
|
|
}
|
|
|
|
.settings .text-box .text .mdc-text-field::before {
|
|
width: 0;
|
|
}
|
|
|
|
.settings .ua {
|
|
position: relative;
|
|
}
|
|
|
|
.settings .ua>button {
|
|
position: absolute;
|
|
top: 30px;
|
|
left: -10px;
|
|
}
|
|
|
|
@media (max-width:767px) {}
|
|
|
|
@media (max-width:1280px) {
|
|
.settings {
|
|
margin: 0;
|
|
}
|
|
}
|