update zola template
This commit is contained in:
43
static/css/dropdown.css
Normal file
43
static/css/dropdown.css
Normal file
@@ -0,0 +1,43 @@
|
||||
/* Dropdown menu styles */
|
||||
.dropdown {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.dropdown-content {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #f9f9f9;
|
||||
min-width: 160px;
|
||||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
||||
z-index: 1;
|
||||
border-radius: 0.375rem;
|
||||
}
|
||||
|
||||
.dropdown-content a {
|
||||
color: black;
|
||||
padding: 12px 16px;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.dropdown-content a:hover {
|
||||
background-color: #f1f1f1;
|
||||
}
|
||||
|
||||
.dropdown:hover .dropdown-content {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Dark mode styles */
|
||||
html.dark .dropdown-content {
|
||||
background-color: #374151;
|
||||
}
|
||||
|
||||
html.dark .dropdown-content a {
|
||||
color: #f9fafb;
|
||||
}
|
||||
|
||||
html.dark .dropdown-content a:hover {
|
||||
background-color: #4b5563;
|
||||
}
|
Reference in New Issue
Block a user