Option heading themes

This commit is contained in:
Jake Archibald
2020-12-05 14:18:14 +00:00
parent 793c8b2574
commit a88d562f36
6 changed files with 49 additions and 9 deletions

View File

@@ -3,15 +3,24 @@
overflow-y: auto;
-webkit-overflow-scrolling: touch;
--horizontal-padding: 15px;
border-radius: var(--scroller-radius);
}
.options-title {
background: rgba(0, 0, 0, 0.9);
background-color: var(--header-color);
color: var(--header-text-color);
margin: 0;
padding: 10px var(--horizontal-padding);
font-weight: normal;
font-weight: bold;
font-size: 1.4rem;
border-bottom: 1px solid #000;
transition: all 300ms ease-in-out;
transition-property: background-color, color;
}
.original-image .options-title {
background-color: var(--black);
color: var(--white);
}
.option-text-first {