From 1473f9f5d3194ccf6dfdfcd3adf4696388b51ff1 Mon Sep 17 00:00:00 2001 From: Tim Pietrusky Date: Sun, 9 Mar 2014 13:26:40 +0100 Subject: [PATCH] Initial commit. --- css/style.scss | 162 ------------------------------------------------- 1 file changed, 162 deletions(-) delete mode 100644 css/style.scss diff --git a/css/style.scss b/css/style.scss deleted file mode 100644 index ef0be84..0000000 --- a/css/style.scss +++ /dev/null @@ -1,162 +0,0 @@ -// Bullgrid -$default-spacing: .85em; - -@import "compass", - "modules", - "bullgrid", - "logo" -; -@import url("http://fonts.googleapis.com/css?family=Lato:400,700"); - -$unit--alpha: .85em; - -$font--alpha: 'Lato', sans-serif; - -$list--alpha: #71f4c8 #71bdf4 #8771f4 #e971f4 #f4719d; -$fukkk-color-list--neutral: #000 #fff; - -$fukkk-color--background: #3c3c3c; - - -// Bullgrid -$default-spacing: .85em; - -* { - @include box-sizing(border-box); -} - -body { - font: 1em $font--alpha; - margin: 0; - background: $fukkk-color--background; - color: $fukkk-color--background; - - @include breakpoint(small) { - font-size: .85em; - } -} - -a { - text-decoration: none; - color: reverse-lightness(#71bdf4); - - &:hover { - color: #71bdf4; - } -} - -h1 { - font: bold 5em $font--alpha; - margin: .15em 0 .15em 0; - color: #fff; - text-align: center; -} - -h2 { - font: bold 2em $font--alpha; - color: #fff; - text-align: center; - margin: 0 0 $unit--alpha 0; -} - -input[type="email"] { - width: 100%; - border: none; - background: #fff !important; - line-height: $unit--alpha * 1.5; - font-size: 1.75em; - color: $fukkk-color--background; - padding: $unit--alpha .25em; - margin: 0; - - @include breakpoint(small) { - margin: unit--alpha 0; - } -} - -button { - margin: 0; - border: none; - padding: .25em; - width: 100%; - font-family: sans-serif; - font-size: 2em; - cursor: pointer; - padding: .5825em .25em; - - &.button__alpha { - background: reverse-lightness(#333); - color: #333; - - &:hover { - background: #71bdf4; - color: #fff; - } - } -} - - - -.list__alpha, -.list__neutral { - font: 1em $font--alpha; - width: 100%; - margin: 0; - padding: 0; - list-style: none; - font-size: 1.75em; - line-height: 1.65em; - - p, li { - padding: $unit--alpha .5em; - margin-bottom: $unit--alpha / 2; - box-shadow: 0 0 $unit--alpha / 4 darken($fukkk-color--background, 10%); - - $i: 1; - - @each $color in $list--alpha { - &:nth-child(#{$i}) { - background: $color; - color: reverse-lightness($color); - } - - $i: $i + 1; - } - } -} - -.list__neutral { - p, li { - $i: 1; - - @each $color in $fukkk-color-list--neutral { - &:nth-child(#{$i}) { - background: reverse-lightness($color); - color: $color; - } - - $i: $i + 1; - } - } -} - -.alpha { - padding: $unit--alpha; -} - - -section { - @extend .cf; -} - -footer { - margin-top: $unit--alpha * 2; - background: #fff; - padding: 0 $unit--alpha 0 $unit--alpha; - - .list__neutral { - li { - box-shadow: none; - } - } -} \ No newline at end of file