X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/7e24f8f625f8772c228442c98ae6484d646c8bfd..30e7821ba4b462355626c54887920872c7111a21:/static/scss/screen.scss?ds=sidebyside diff --git a/static/scss/screen.scss b/static/scss/screen.scss index ab4b7bf..ff293f2 100644 --- a/static/scss/screen.scss +++ b/static/scss/screen.scss @@ -9,7 +9,13 @@ "compass/utilities/general/clearfix"; @include establish-baseline; - + +::selection{ + background: darken(saturate(adjust-hue($page-background, 90deg), 100%), 20%); + text-shadow: none !important; + color:#FFF !important; +} + body{ background:$page-background; @include body-text; @@ -63,6 +69,23 @@ body{ font-family:Menlo, monospace; @include adjust-font-size-to(13px); } + .codeblock{ + @extend code; + padding: 10px; + display:block; + code{ + margin:0; + padding:0; + @include box-shadow(none); + @include border-radius(0); + border:none; + display:block; + } + &.shell code::before{ + content: "$ "; + color:lighten($foreground, 10%); + } + } } .three-up{ @@ -169,4 +192,20 @@ body{ @include adjust-font-size-to(13px); float:right; } +} + +footer{ + margin-top: 25px; + padding-top: 20px; + border-top:5px solid $foreground; + @include box-shadow(0 1px 0 0 #FFF inset); + @include adjust-font-size-to(13px); + color:lighten($foreground, 20%); + a{ + text-decoration:none; + color:darken($page-background, 40%); + &:hover{ + color:darken($page-background, 80%); + } + } } \ No newline at end of file