From 60915408f6b9549dd8f0279ab3f715f1a32dea15 Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Mon, 27 Apr 2020 21:08:02 -0400 Subject: finished offerings --- src/scss/index.scss | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) (limited to 'src/scss/index.scss') 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"); } -- cgit v1.2.3