diff options
author | Cara Salter <cara@devcara.com> | 2022-08-24 13:15:31 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-08-24 13:15:31 -0400 |
commit | 9de84e3fbae0f2893e9c4f1425afa06899959bf7 (patch) | |
tree | f96d33d881954edc9b03df0bc821fb35eb59c577 /scss/style.scss | |
parent | 4b616447715b8129ae322341959e1c2bfabbd10e (diff) | |
download | nccd-9de84e3fbae0f2893e9c4f1425afa06899959bf7.tar.gz nccd-9de84e3fbae0f2893e9c4f1425afa06899959bf7.zip |
flaskify
Diffstat (limited to 'scss/style.scss')
-rw-r--r-- | scss/style.scss | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/scss/style.scss b/scss/style.scss deleted file mode 100644 index ede6466..0000000 --- a/scss/style.scss +++ /dev/null @@ -1,56 +0,0 @@ -$color-bg: #282828; -$color-fg: #ebdbb2; -$color-accent: #d79921; -$color-link: #458588; -$color-danger: #cc241d; -$font-family: monospace; - -body { - background: $color-bg; - color: $color-fg; - font-family: $font-family; -} - -a a:active, a:visited { - color: $color-link; -} - -.container { - margin: auto; - width: 60%; -} - -button { - border-radius: 8px; - background-color: $color-link; - border-color: $color-link; - border: none; - margin: 0.5rem; -} - -button.accent { - background-color: $color-accent; - border-color: $color-accent; -} - -// Forms -form { - width: 40%; -} - -label, -input { - display: inline-block; -} - -label { - width: 40%; - text-align: right; -} - -label+input { - width: 40% - - margin: 0 30% 0 4%; -} - |