1
0

Add .obisidan so we can share between machines.

This commit is contained in:
2025-12-09 15:52:10 +01:00
parent 81790199af
commit 17475e6955
41 changed files with 33630 additions and 2 deletions

View File

@@ -0,0 +1,42 @@
.spoiler, .spoiler-show {
transition: all .3s;
position: relative;
color: transparent;
text-shadow: 0 0 12px var(--text-normal);
padding: .8em;
cursor: pointer;
background-color: var(--background-secondary);
border-radius: 4px;
user-select: none;
}
.spoiler-show {
text-shadow: 0 0 0 transparent !important;
color: var(--text-normal) !important;
user-select: auto !important;
cursor: auto !important;
}
.spoiler::before, .spoiler::after {
display: block;
position: absolute;
font-weight: 500;
color: var(--text-accent);
text-align: center;
text-shadow: none;
transition: all .3s;
content: 'CLICK TO SHOW';
opacity: 0;
left: 0;
right: 0;
transform: translateY(-50%);
top: 50%;
}
.spoiler:hover:before {
opacity: 1;
}
.spoiler:hover {
text-shadow: 0 0 14px var(--text-normal);
}