From 3df910b359125d35ca71f4e9419b0bd41d56718c Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Mon, 14 Jun 2021 22:11:50 -0400 Subject: stripping bulma and cobalt; uneeded at this point --- styles/blog.scss | 8 ---- styles/index.scss | 116 ------------------------------------------------------ styles/main.scss | 65 ------------------------------ 3 files changed, 189 deletions(-) delete mode 100644 styles/blog.scss delete mode 100644 styles/index.scss delete mode 100644 styles/main.scss (limited to 'styles') diff --git a/styles/blog.scss b/styles/blog.scss deleted file mode 100644 index d4f2702..0000000 --- a/styles/blog.scss +++ /dev/null @@ -1,8 +0,0 @@ -@charset "utf-8"; - -//body { -// background-image: url("/assets/bg.png"); -//} - -@import "./main.scss"; -@import "../_bulma/node_modules/bulma/sass/components/card.sass"; diff --git a/styles/index.scss b/styles/index.scss deleted file mode 100644 index 6f60d9d..0000000 --- a/styles/index.scss +++ /dev/null @@ -1,116 +0,0 @@ -@charset "utf-8"; - -// Import main -@import "./main.scss"; - -.offering { - color: white; -} -.offering .content u { - cursor: pointer; -} -.column .offering { - border: 1em solid $darkgray; -} -.darkteal { - background-color: $darkteal; -} -.green { - background-color: $green; -} -.darkerteal { - background-color: $darkerteal; -} -.darkgray { - background-color: $darkgray; -} -.darkgreen { - background-color: $darkgreen; -} - -.blurb { - background-color: white; - clip-path: polygon( - 0% 0%, - 100% 0%, - 100% 75%, - 75% 75%, - 75% 100%, - 50% 75%, - 0% 75% - ); -} - -.content h2 { - color: $darkteal; -} - -.banner { - right: 100%; - padding-top: 5%; - padding-bottom: 5%; - padding-right: 5%; - - // gradient - background: -moz-linear-gradient( - left, - rgba(255, 255, 255, 0) 0%, - rgba(255, 255, 255, 1) 50% - ); - background: -webkit-linear-gradient( - left, - rgba(255, 255, 255, 0) 0%, - rgba(255, 255, 255, 1) 50% - ); - background: linear-gradient( - to right, - rgba(255, 255, 255, 0) 0%, - rgba(255, 255, 255, 1) 50% - ); - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); -} - -.has-banner { - //margin-top: 0px !important; - //margin-bottom: 0px !important; - padding-top: 0px !important; - padding-bottom: 0px !important; - padding-right: 0px !important; - padding-left: 10% !important; -} - -.quiet { - background-color: white; -} - -.fawnseh { - font-family: "Architects Daughter", cursive; -} - -.has-text-shadow { - 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("/assets/bg.png"); -} - -th { - width: 20%; -} - -@import "../_bulma/node_modules/bulma/sass/components/message.sass"; diff --git a/styles/main.scss b/styles/main.scss deleted file mode 100644 index 1f12ce2..0000000 --- a/styles/main.scss +++ /dev/null @@ -1,65 +0,0 @@ -@charset "utf-8"; - -// Google Fonts -@import url("https://fonts.googleapis.com/css?family=Architects+Daughter|Indie+Flower|PT+Sans|PT+Sans+Narrow&display=swap"); - -// Palette -$darkteal: rgb(0, 100, 108); -$green: rgb(88, 169, 143); -$darkerteal: rgb(29, 133, 137); -$gray: rgb(157, 210, 211); -$teal: rgb(58, 165, 166); -$cyan: rgb(156, 210, 210); -$darkgray: rgb(127, 177, 181); -$darkgreen: rgb(59, 136, 114); -$yellow: rgb(186, 214, 187); - -// Update Bulma's global variables -$primary: $teal; -$link: $darkteal; -// $info: $cyan -$success: $green; -// $warning: $yellow -// $danger: $red -// $dark: $grey-darker -// $text: $grey-dark -$family-sans-serif: "PT Sans", sans-serif; -// $hr-background-color: $primary; -$title-color: $darkteal; -$title-family: "Architects Daughter", cursive; -$subtitle-color: $darkteal; -$subtitle-family: "Indie Flower", cursive; -//$body-font-size: 1.8rem; -// $body-background-color: $isabelline; -// $table-striped-row-even-background-color: $darkteal; -$table-cell-heading-color: $darkteal; -$table-head-cell-color: $darkteal; -$dimensions: 16 24 32 48 64 96 128 200 256; - -nav { - font-family: "PT Sans Narrow", sans-serif; -} - -// Import only what you need from Bulma -@import "../_bulma/node_modules/bulma/sass/utilities/functions.sass"; -@import "../_bulma/node_modules/bulma/sass/utilities/initial-variables.sass"; -@import "../_bulma/node_modules/bulma/sass/utilities/derived-variables.sass"; -@import "../_bulma/node_modules/bulma/sass/utilities/controls.sass"; -@import "../_bulma/node_modules/bulma/sass/utilities/mixins.sass"; -@import "../_bulma/node_modules/bulma/sass/base/_all.sass"; -@import "../_bulma/node_modules/bulma/sass/components/modal.sass"; -@import "../_bulma/node_modules/bulma/sass/components/navbar.sass"; -@import "../_bulma/node_modules/bulma/sass/elements/box.sass"; -@import "../_bulma/node_modules/bulma/sass/elements/button.sass"; -@import "../_bulma/node_modules/bulma/sass/elements/container.sass"; -@import "../_bulma/node_modules/bulma/sass/elements/content.sass"; -@import "../_bulma/node_modules/bulma/sass/elements/icon.sass"; -@import "../_bulma/node_modules/bulma/sass/elements/image.sass"; -@import "../_bulma/node_modules/bulma/sass/elements/table.sass"; -@import "../_bulma/node_modules/bulma/sass/elements/title.sass"; -@import "../_bulma/node_modules/bulma/sass/form/shared.sass"; -@import "../_bulma/node_modules/bulma/sass/form/tools.sass"; -@import "../_bulma/node_modules/bulma/sass/form/input-textarea.sass"; -@import "../_bulma/node_modules/bulma/sass/grid/columns.sass"; -@import "../_bulma/node_modules/bulma/sass/layout/footer.sass"; -@import "../_bulma/node_modules/bulma/sass/layout/section.sass"; -- cgit v1.2.3