diff options
author | 2021-08-21 19:54:37 +0200 | |
---|---|---|
committer | 2021-08-21 19:54:37 +0200 | |
commit | 71cc09db93ec9b079a30593e14ca57c98fdc94ac (patch) | |
tree | 652a23dbec9c8395f96b59dc6556363ef556962b /styles/global.scss | |
parent | a9d3686ccc496044cfdee013ccfbece955793052 (diff) | |
download | my_apps-71cc09db93ec9b079a30593e14ca57c98fdc94ac.tar.gz my_apps-71cc09db93ec9b079a30593e14ca57c98fdc94ac.tar.bz2 my_apps-71cc09db93ec9b079a30593e14ca57c98fdc94ac.zip |
color themes
Diffstat (limited to 'styles/global.scss')
-rw-r--r-- | styles/global.scss | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/styles/global.scss b/styles/global.scss index 222bc44..11d23d3 100644 --- a/styles/global.scss +++ b/styles/global.scss @@ -1,4 +1,5 @@ @import "reset"; +@import "themes"; @import "window"; main { @@ -11,16 +12,9 @@ main { body { margin: 0; - color: #222; height: 100vh; overflow: hidden; - background: #50a3a2; - background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%); - background: -moz-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%); - background: -o-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%); - background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%); - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, Noto Sans, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; @@ -37,3 +31,4 @@ textarea, input { padding-left: 2rem; padding-right: 2rem; } + |