diff options
author | 2021-08-22 14:33:54 +0200 | |
---|---|---|
committer | 2021-08-29 15:35:49 +0200 | |
commit | 9f74c550927671f4ded301d0cf3e9d592716375c (patch) | |
tree | 6075bead5939bfb9c3b6137fc5ef865f088b57cb /apps/Settings/styles | |
parent | 71cc09db93ec9b079a30593e14ca57c98fdc94ac (diff) | |
download | my_apps-9f74c550927671f4ded301d0cf3e9d592716375c.tar.gz my_apps-9f74c550927671f4ded301d0cf3e9d592716375c.tar.bz2 my_apps-9f74c550927671f4ded301d0cf3e9d592716375c.zip |
settings
Diffstat (limited to 'apps/Settings/styles')
-rw-r--r-- | apps/Settings/styles/Settings.module.scss | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/apps/Settings/styles/Settings.module.scss b/apps/Settings/styles/Settings.module.scss new file mode 100644 index 0000000..9edef38 --- /dev/null +++ b/apps/Settings/styles/Settings.module.scss @@ -0,0 +1,51 @@ +.settings { + text-align: center; + padding: 1em; + + span { + padding: .5em; + } + + div { + text-align: left; + margin: 1.5em 0; + + &:nth-of-type(1) { + margin-top: .5em; + } + + &:nth-of-type(3) { + margin-top: 3em; + } + + &:nth-of-type(4) > span { + width: 2em; + height: 2em; + display: inline-block; + margin: 0 1em; + outline-offset: 4px; + + &:nth-of-type(1) { + background-color: #53e3a6; + } + + &:nth-of-type(2) { + background-color: #2986b3; + } + + &:nth-of-type(3) { + background-color: #000; + } + } + } + + input { + margin: 1em auto; + } + + &__active { + outline: 3px solid var(--color-window-buttons); + } +} + + |