forked from newthuhole/hole_thu_frontend
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
1.5 KiB
86 lines
1.5 KiB
.title-bar { |
|
z-index: 10; |
|
position: sticky; |
|
top: -6em; |
|
left: 0; |
|
width: 100%; |
|
height: 9em; |
|
background-color: rgba(255,255,255,.8); |
|
box-shadow: 0 0 25px rgba(0,0,0,.4); |
|
margin-bottom: 1em; |
|
backdrop-filter: blur(5px); |
|
} |
|
|
|
.root-dark-mode .title-bar { |
|
background-color: hsla(0,0%,15%,.6); |
|
box-shadow: 0 0 15px rgba(255,255,255,.2); |
|
} |
|
|
|
.control-bar { |
|
display: flex; |
|
margin-top: .5em; |
|
line-height: 2em; |
|
} |
|
|
|
.control-btn { |
|
flex: 0 0 4.5em; |
|
text-align: center; |
|
color: black; |
|
border-radius: 5px; |
|
} |
|
.control-btn:hover { |
|
background-color: #555555; |
|
color: white; |
|
} |
|
.control-btn-label { |
|
margin-left: .25rem; |
|
font-size: .9em; |
|
vertical-align: .05em; |
|
} |
|
@media screen and (max-width: 900px) { |
|
.control-btn { |
|
flex: 0 0 2.5em; |
|
} |
|
.control-btn-label { |
|
display: none; |
|
} |
|
.control-search { |
|
padding: 0 .5em; |
|
} |
|
} |
|
|
|
.root-dark-mode .control-btn { |
|
color: var(--foreground-dark); |
|
opacity: .9; |
|
} |
|
.root-dark-mode .control-btn:hover { |
|
color: var(--foreground-dark); |
|
opacity: 1; |
|
} |
|
|
|
.control-search { |
|
flex: auto; |
|
color: black; |
|
background-color: rgba(255,255,255,.3) !important; |
|
margin: 0 .5em; |
|
min-width: 8em; |
|
} |
|
|
|
.control-search:focus { |
|
background-color: white !important; |
|
} |
|
|
|
.root-dark-mode .control-search { |
|
background-color: rgba(255,255,255,.7) !important; |
|
} |
|
.root-dark-mode .control-search:focus { |
|
background-color: hsl(0,0%,90%) !important; |
|
} |
|
|
|
.list-menu { |
|
text-align: center; |
|
} |
|
|
|
.help-desc-box p { |
|
margin: .5em; |
|
} |