From 6fa536f3268bf7bd4fd85df7fa78fbc4c67eaaa1 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Sat, 20 Dec 2014 23:13:09 -0500 Subject: Working on some major changes --- _includes/inline.scss | 236 +++++++++++++++++++++++++++----------------------- 1 file changed, 129 insertions(+), 107 deletions(-) (limited to '_includes/inline.scss') diff --git a/_includes/inline.scss b/_includes/inline.scss index b0feec9..da8c4f0 100644 --- a/_includes/inline.scss +++ b/_includes/inline.scss @@ -7,38 +7,133 @@ body { font-family: $serif; font-size: 20px; - color: $base02; + color: $black; } h1, h2, h3, h4, h5, h6 { font-family: $sans; - font-weight: 600; - margin-top: 0.5em; + font-weight: 200; + margin-top: 1em; margin-bottom: 0.5em; + text-align: center; + width: 80%; + margin-left: auto; + margin-right: auto; } a { color: $red; text-decoration: none; - @include transition(color, 0.25s, linear); + @include transition(color, $link-fade-time, ease); &:hover { - color: darken($red, 15%); + color: darken($red, $link-darken-amount); + } + + &.project { + color: $blue; + &:hover { + color: darken($blue, $link-darken-amount); + } + } + + &.post { + color: $magenta; + &:hover { + color: darken($magenta, $link-darken-amount); + } + } +} + +p { + line-height: 2em; + margin-bottom: 2em; + margin-top: 2em; +} + +pre { + margin-bottom: 1.5em; + border-left: 3px solid $base1; + padding-left: 1em; +} + +blockquote { + width: 80%; + margin-right: auto; + margin-left: auto; + margin-top: 0; + margin-bottom: 0; + position: relative; + + quotes: "\201C""\201D""\2018""\2019"; + + &:before { + content: open-quote; + color: $base1; + font-size: 4em; + margin: 0; + padding: 0; + line-height: 0; + position: absolute; + left: -0.7em; + top: 0.5em; + font-family: $monospace; } } +table { + margin-top: 1em; + margin-bottom: 1em; +} + +td { + font-size: 0.8em; + padding: 0.5em; + vertical-align: top; +} + +ul { + list-style-type: square; +} + +ul, ol { + margin-left: 2em; + margin-bottom: 1em; +} + +li { + margin-bottom: 1em; +} + +code { + font-family: $monospace; + font-size: 0.8em; + color: $base01; +} + footer { - font-family: $sans; + font-family: $monospace; text-align: center; + border-top: 2px solid $red; padding-top: 1em; - padding-bottom: 2em; - text-transform: uppercase; - letter-spacing: 1px; - font-weight: 600; + padding-bottom: 1em; font-size: 0.8em; + @include transition(color, $link-fade-time, ease); + color: $base1; - p { - margin: 1em; + a { + color: $base1; + } + + &:hover { + color: $black; + + a { + color: $red; + &:hover { + color: darken($red, $link-darken-amount); + } + } } } @@ -47,16 +142,16 @@ header { font-family: $sans; a { - // font-size: 1em; - font-weight: 600; - color: rgb(255, 255, 255); + font-weight: 200; + color: $white; display: block; + border: none; text-align: center; - padding-top: 0.5em; - padding-bottom: 0.5em; + padding: 0.5em; + @include transition(all, $link-fade-time, ease); &:hover { - color: rgb(255, 255, 255); + color: $white; } } @@ -64,7 +159,7 @@ header { @include nav_button($blue); } - .writing { + .posts { @include nav_button($magenta); } @@ -78,7 +173,10 @@ header { } .about { - text-align: center; + p { + text-align: center; + } + width: 80%; margin-left: auto; margin-right: auto; @@ -94,105 +192,29 @@ header { background-repeat: no-repeat; } -[class^="icon-"], -[class*=" icon-"] { - font-family: 'icomoon'; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - - font-size: 32px; - - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -p { - line-height: 1.7em; - margin-bottom: 1.7em; -} - -pre { - margin-bottom: 1.5em; - border-left: 3px solid $base1; - padding-left: 1em; -} - - - -.projects a { - color: $blue; - &:hover { - color: darken($blue, 15%); - } +.right { + text-align: right; } -.writing a { - color: $magenta; - &:hover { - color: darken($magenta, 15%); - } +.arrow { + color: $base1; + font-family: $monospace; + font-size: 2em; } .article { .date { - margin-bottom: 1em; - font-family: $sans; - font-weight: 600; + // margin-bottom: 1em; + font-family: $monospace; + // font-weight: 200; + color: $base1; + text-align: center; } img { max-width: 100%; } - - ul { - list-style-type: square; - } - - ul, ol { - margin-left: 2em; - margin-bottom: 1em; - } - - code { - font-family: $monospace; - font-size: 0.7em; - color: $base01; - } -} - -.social-buttons { - float: right; -} - -//  -.icon-googleplus { - color: $googleplus-color; -} - -//  -.icon-facebook { - color: $facebook-color; -} - -//  -.icon-twitter { - color: $twitter-color; -} - -//  -.icon-tumblr { - color: $tumblr-color; -} - -//  -.icon-pinterest { - color: $pinterest-color; } @media print { -- cgit v1.2.3