Add dropdown menu for opening article in other apps

This commit is contained in:
2024-10-21 22:58:46 +02:00
parent ffd709d2f9
commit 96254b38be
4 changed files with 114 additions and 19 deletions

View File

@@ -25,10 +25,35 @@ pre code {
color: #ccc;
}
p.meta .date {
main header .meta .date {
color: #888;
}
p.meta .name a {
main header .meta .name a {
color: #3b3a38;
}
/* Dropdown menu */
.dropdown-button {
background-color: #f5f2eb;
color: #3b3a38;
border-color: #ccc;
}
.dropdown-content {
background-color: #fff;
}
.dropdown-content a {
color: #3b3a38 !important;
}
.dropdown-content a:hover {
background-color: #f1f1f1;
}
.dropdown:hover .dropdown-button {
background-color: #fff;
border-color: #fff;
}