diff options
author | sanine-a <sanine.not@pm.me> | 2021-04-13 15:12:25 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2021-04-13 15:12:25 -0500 |
commit | 8f9cefc98e25d9e0f931dfe6dc2acced818700ee (patch) | |
tree | 5253c49649e2efcc3828d9088a0c38c4216824ed /style.css | |
parent | 64c6fb119164afcfc654ccee3c2ad96426f17a0c (diff) |
add style dropdowns and reset() function
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -58,6 +58,7 @@ body { border-style: solid; border-width: 2px; display: inline-block; + margin: 2px; } @@ -84,12 +85,21 @@ body { .StyleDropdownButton { + color: black; + background-color: white; padding: 10px; border-radius: 8px; border-style: solid; border-width: 2px; + border-color: #2af; display: inline-block; - min-width: 100px; + min-width: 180px; + margin: 2px; +} + +.StyleDropdownButton:hover +{ + background-color: #eee; } .StyleDropdownContainer @@ -102,10 +112,10 @@ body { { display: none; position: absolute; - min-width: 160px; + min-width: 220px; max-height: 500%; z-index: -1; - overflow: scroll; + overflow-y: scroll; } .StyleDropdownContent a |