From 54733de3e1e9242e0f4d67d328b987c1142b6882 Mon Sep 17 00:00:00 2001 From: José Mota Date: Thu, 1 May 2014 02:00:23 +0100 Subject: Add Sass files. --- sass/elements.sass | 8 ++++++++ sass/main.sass | 41 +++++++++++++++++++++++++++++++++++++++++ sass/variables.sass | 3 +++ 3 files changed, 52 insertions(+) create mode 100644 sass/elements.sass create mode 100644 sass/main.sass create mode 100644 sass/variables.sass (limited to 'sass') diff --git a/sass/elements.sass b/sass/elements.sass new file mode 100644 index 0000000..c73f7cb --- /dev/null +++ b/sass/elements.sass @@ -0,0 +1,8 @@ +body + background: url('images/bg.png') no-repeat left top + +a + outline: 0 + +h3 + font-weight: normal diff --git a/sass/main.sass b/sass/main.sass new file mode 100644 index 0000000..150daaf --- /dev/null +++ b/sass/main.sass @@ -0,0 +1,41 @@ +@import "variables" +@import "elements" +@import "bootstrap" + +#cta + margin-top: 120px + margin-bottom: 120px + h1 + font-size: 48px + letter-spacing: -1px + margin-bottom: 1em + strong + font-weight: 400 + +.feature-icon + background: $brand-primary + width: 3em + text-align: center + line-height: 3em + height: 3em + font-size: 2.5em + color: #fff + border-radius: 50% + margin: 0.5em auto + +footer + border-top: 1px solid #eee + padding-top: .5em + margin-top: .5em + +.feature + border-top: 1px solid #eee + +section.feature + padding-bottom: 2em + padding-top: 2em + +#title + border-bottom: 1px solid #eee + padding-top: 2em + padding-bottom: 2em diff --git a/sass/variables.sass b/sass/variables.sass new file mode 100644 index 0000000..6c64679 --- /dev/null +++ b/sass/variables.sass @@ -0,0 +1,3 @@ +$font-family-sans-serif: "Open Sans", "Helvetica Neue", "Arial", sans-serif +$headings-font-weight: 200 +$brand-primary: #ac1905 -- cgit v1.2.3-54-g00ecf