diff options
Diffstat (limited to '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%; -} - |