diff options
Diffstat (limited to 'src/scss/index.scss')
-rw-r--r-- | src/scss/index.scss | 34 |
1 files changed, 23 insertions, 11 deletions
diff --git a/src/scss/index.scss b/src/scss/index.scss index 79ed71d..67f41a5 100644 --- a/src/scss/index.scss +++ b/src/scss/index.scss @@ -41,31 +41,29 @@ $body-font-size: 1.25rem; @import "../../node_modules/bulma/sass/layout/_all.sass"; @import "../../node_modules/bulma/sass/grid/_all.sass"; -// Palette +.offering { + color: white; +} +.offering .content u { + cursor: pointer; +} +.column .offering { + border: 1em solid $darkgray; +} .darkteal { background-color: $darkteal; - border: 1em solid $darkgray; - color: white; } .green { background-color: $green; - border: 1em solid $darkgray; - color: white; } .darkerteal { background-color: $darkerteal; - border: 1em solid $darkgray; - color: white; } .darkgray { background-color: $darkgray; - border: 1em solid $darkgray; - color: white; } .darkgreen { background-color: $darkgreen; - border: 1em solid $darkgray; - color: white; } .blurb { @@ -127,6 +125,20 @@ $body-font-size: 1.25rem; text-shadow: 0px 0px 4px #ffffff; } +@keyframes fadeIn { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +.fadeIn { + animation-name: fadeIn; + animation-duration: 0.3s; +} + body { background-image: url("/bg.png"); } |