mirror of
https://github.com/zombieFox/nightTab.git
synced 2024-11-23 00:23:28 +01:00
31 lines
515 B
CSS
31 lines
515 B
CSS
.theme {
|
|
position: relative;
|
|
}
|
|
|
|
.theme-label.button {
|
|
position: relative;
|
|
padding-right: 2.25em;
|
|
}
|
|
|
|
.theme-label:before {
|
|
background-color: rgb(var(--accent));
|
|
content: "";
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
right: 0.5em;
|
|
width: 1em;
|
|
height: 1em;
|
|
z-index: 1;
|
|
box-shadow: 0 0 0.25em 0 rgba(var(--accent), 0.6), 0 0 0.5em 0 rgba(var(--accent), 0.4);
|
|
}
|
|
|
|
.theme-input[type="color"] {
|
|
opacity: 0;
|
|
width: 2px;
|
|
min-width: 2px;
|
|
height: 2px;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|