summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2014-07-07 10:57:58 -0400
committerluxagraf <sng@luxagraf.net>2014-07-07 10:57:58 -0400
commiteba777b0403e35150b9aa705df8d1a731ce7cef1 (patch)
treeb5051789a848bb22e7fef69e6ab01806ac5982ae
parent1dba22e26f39c9637602222b98fccf4d3d28f8fe (diff)
fixed a wtf bug (white line on body) and repositioned the logo on small
screens
-rw-r--r--design/config.rb2
-rw-r--r--design/sass/_global.scss1
-rw-r--r--design/sass/_header.scss7
3 files changed, 7 insertions, 3 deletions
diff --git a/design/config.rb b/design/config.rb
index 61cbbe0..eff5b4c 100644
--- a/design/config.rb
+++ b/design/config.rb
@@ -7,7 +7,7 @@ sass_dir = "sass"
images_dir = "../site/media/img"
javascripts_dir = "../site/media"
#output_style = :compressed
-output_style = :expanded
+output_style = :compressed
#output_style = (environment == :production) ? :compressed : :expanded
# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true
diff --git a/design/sass/_global.scss b/design/sass/_global.scss
index 910cc94..2db16cd 100644
--- a/design/sass/_global.scss
+++ b/design/sass/_global.scss
@@ -3,7 +3,6 @@ html {
}
body {
- border-top: 1px solid #fbf9f7;
margin: 0 auto;
padding: 0;
overflow-x: hidden;
diff --git a/design/sass/_header.scss b/design/sass/_header.scss
index da9e41a..8f4b207 100644
--- a/design/sass/_header.scss
+++ b/design/sass/_header.scss
@@ -60,9 +60,14 @@ header[role="banner"] {
.black header h1 a, .dark header h1 a {
color: $body_font_light;
&:before {
- background: url("logo-new-@2x-treeonly.png") center -65px no-repeat;
+ background: url("logo-new-@2x-treeonly.png") center -75px no-repeat;
background-size: 92px;
}
+ @include breakpoint(gamma) {
+ &:before {
+ background-position-y: -65px;
+ }
+ }
}