blob: 8ce99275adaa837451882db001daac856aeeaf06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
pre {
background-color: none !important;
}
@media (prefers-color-scheme: dark) {
* {
transition: backgourd-color 0.5s;
}
}
@media screen and (max-width: 1023px) {
.navbar-menu {
box-shadow: 0 8px 16px -8px rgb(10 10 10 / 10%) !important;
}
}
.navbar-brand .navbar-item:hover {
background-color: inherit !important;
}
|