Add dark theme variant

This commit is contained in:
2023-11-11 11:37:26 +01:00
parent ad2f6a964e
commit 68b5783a28
5 changed files with 156 additions and 20 deletions

View File

@@ -4,18 +4,20 @@
position: relative;
}
.polaroid a.edit {
background: #fff;
background: var(--bs-body-bg);
border-radius: 3px;
box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
display: none !important;
color: var(--bs-body-color);
opacity: 0;
left: 20px;
line-height: 1.5;
padding: 5px 10px;
position: absolute;
transition: 0.25s;
top: 20px;
}
.polaroid:hover > a.edit {
display: block !important;
opacity: 1;
}