2010-11-27 23:13:47 +00:00
|
|
|
@mixin site-theme($theme, $page-bg, $text, $strong-text, $heading, $link, $code, $search, $nav-link, $main-nav, $main-nav-selected, $option-panel-border, $option-panel-bg){
|
|
|
|
body { background: $page-bg; color: $text;
|
2010-11-21 23:33:58 +00:00
|
|
|
a { color: $link; } }
|
2010-11-27 23:13:47 +00:00
|
|
|
|
2010-11-23 06:09:18 +00:00
|
|
|
#page { @extend .horizontal-rule-#{$theme}; }
|
2010-11-21 23:33:58 +00:00
|
|
|
header { @extend .horizontal-rule-#{$theme}; border-width: 4px; }
|
|
|
|
|
2010-11-27 23:13:47 +00:00
|
|
|
nav a { color: $nav-link; }
|
2010-11-21 23:33:58 +00:00
|
|
|
#main-nav a { color: $main-nav;}
|
2010-11-27 23:13:47 +00:00
|
|
|
|
|
|
|
body#home #main-nav a[rel=home],
|
|
|
|
body#help #main-nav a[rel=help],
|
|
|
|
body.reference #main-nav a[rel=documentation],
|
|
|
|
body#get-involved #main-nav a[rel=get-involved]{ color: $main-nav-selected; }
|
|
|
|
|
|
|
|
#search-docs input {
|
|
|
|
@extend .inset-panel-#{$theme}; color: $search;
|
|
|
|
&::-webkit-input-placeholder { color: $search; } }
|
|
|
|
#{headings()}{ color: $heading;
|
|
|
|
strong { color: $main-nav-selected; }
|
|
|
|
em { color: $code; } }
|
|
|
|
|
|
|
|
h2 { @extend .horizontal-rule-#{$theme}; }
|
|
|
|
|
|
|
|
aside { @extend .vertical-rule-#{$theme};
|
|
|
|
h2 a { color: $strong-text; } }
|
|
|
|
|
|
|
|
footer .links li { @extend .vertical-rule-#{$theme}; }
|
|
|
|
code { @extend .code-block-#{$theme}; color: $code; }
|
|
|
|
|
|
|
|
#theme_pref { @extend .theme-switch-#{$theme}; }
|
|
|
|
#docs_panel div { background: $option-panel-bg; border: 1px solid $option-panel-border; border-top: 0; }
|
|
|
|
|
|
|
|
body#home .overview div { @extend .inset-panel-#{$theme};
|
|
|
|
h4 { @extend .horizontal-rule-#{$theme}; } }
|
|
|
|
#featured_sites li { @extend .inset-panel-#{$theme}; }
|
|
|
|
|
|
|
|
}
|
|
|
|
@mixin docs-theme($theme, $heading, $code, $nav-link, $docs-nav-selected, $module-nav-selected){
|
|
|
|
|
|
|
|
#page > article {
|
|
|
|
h1, h2 { @extend .horizontal-rule-#{$theme}; }
|
|
|
|
h3 { @extend .heading-panel-#{$theme}; } }
|
2010-11-21 23:33:58 +00:00
|
|
|
|
|
|
|
#sub-nav { @extend .horizontal-rule-#{$theme}; }
|
|
|
|
#docs-nav { @extend .vertical-rule-#{$theme}; }
|
2010-11-22 00:33:38 +00:00
|
|
|
body.core a[rel=core], body.blueprint a[rel=blueprint]{ @extend .inset-panel-#{$theme}; color: $docs-nav-selected; @extend .round-corners-4;}
|
2010-11-27 23:13:47 +00:00
|
|
|
#main-nav a[rel=home] { @include replace-text-with-dimensions("compass-logo-small-#{$theme}.png"); display: inline-block; float: left; }
|
|
|
|
|
2010-11-23 21:34:29 +00:00
|
|
|
#module-nav {
|
|
|
|
ul { overflow: visible; }
|
|
|
|
li.selected { @extend .selected-marker-#{$theme};
|
|
|
|
a { color: $module-nav-selected; } } }
|
2010-11-21 23:33:58 +00:00
|
|
|
|
2010-11-27 23:13:47 +00:00
|
|
|
a[rel=sass], a[rel=scss] { @extend .syntax-switch-#{$theme}; }
|
|
|
|
&.sass a[rel=sass], &.scss a[rel=scss] { color: $heading; color: rgba($heading, .7); @extend .round-corners-em; @extend .inset-panel-#{$theme}; }
|
2010-11-23 21:34:29 +00:00
|
|
|
|
2010-11-27 23:13:47 +00:00
|
|
|
#version { color: rgba($heading, .3); a { color: rgba($nav-link, .7); } }
|
2010-11-24 23:43:25 +00:00
|
|
|
.mixin-source { @extend .mixin-panel-#{$theme}; }
|
2010-11-27 23:13:47 +00:00
|
|
|
h2 a.help { color: $heading;}
|
2010-11-21 23:33:58 +00:00
|
|
|
|
2010-11-23 21:34:29 +00:00
|
|
|
|
2010-11-27 23:13:47 +00:00
|
|
|
.source-documentation { @extend .doc-panel-#{$theme}; }
|
2010-11-23 06:09:18 +00:00
|
|
|
|
2010-11-23 21:34:29 +00:00
|
|
|
.arg { color: $code; }
|
|
|
|
.arg[data-default-value] { color: rgba($code, .7); }
|
|
|
|
a[rel="view source"]{ color: rgba($heading, .5); &:hover{ color: rgba($heading, .8);} }
|
2010-11-27 23:13:47 +00:00
|
|
|
|
2010-11-21 23:33:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Dark theme
|
|
|
|
.inset-panel-dark {
|
2010-11-23 06:09:18 +00:00
|
|
|
@include box-shadow(rgba(#fff, .1) 0 1px 0, rgba(#000, .8) 0 1px 7px 0px inset);
|
2010-11-27 23:13:47 +00:00
|
|
|
background: darken(#2f2f2f, 4); background-color: rgba(#000, .3); }
|
2010-11-17 05:03:42 +00:00
|
|
|
|
2010-11-21 23:33:58 +00:00
|
|
|
.horizontal-rule-dark {
|
2010-11-23 06:09:18 +00:00
|
|
|
@include box-shadow(rgba(#fff, .07) 0 1px 0);
|
2010-11-17 05:03:42 +00:00
|
|
|
border-bottom: 1px solid #121212; }
|
|
|
|
|
2010-11-21 23:33:58 +00:00
|
|
|
.vertical-rule-dark {
|
2010-11-23 06:09:18 +00:00
|
|
|
@include box-shadow(rgba(#fff, .07) 1px 0 0);
|
2010-11-17 05:03:42 +00:00
|
|
|
border-right: 1px solid #121212; }
|
|
|
|
|
2010-11-23 06:09:18 +00:00
|
|
|
.code-block-dark { @extend .code-block; @extend .inset-panel-dark; }
|
2010-11-17 05:03:42 +00:00
|
|
|
|
2010-11-23 21:34:29 +00:00
|
|
|
.heading-panel-dark {
|
2010-11-27 23:13:47 +00:00
|
|
|
background: darken(#2f2f2f, 6);
|
2010-11-23 21:34:29 +00:00
|
|
|
background: rgba(#000, .2);
|
|
|
|
@include box-shadow(rgba(#000, .2) 0 0 0 1px inset);
|
|
|
|
a:hover { color: #fff;
|
|
|
|
.arg { color: rgba(#fff, .6);}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.doc-panel-dark {
|
2010-11-27 23:13:47 +00:00
|
|
|
background: darken(#2f2f2f, 4);
|
2010-11-23 21:34:29 +00:00
|
|
|
background: rgba(#000, .1);
|
|
|
|
@include box-shadow(rgba(#000, .2) 0 0 0 1px inset);
|
|
|
|
}
|
|
|
|
|
|
|
|
.syntax-switch-dark {
|
|
|
|
color: #000; text-shadow: rgba(#fff, .08) 0 1px 0;
|
|
|
|
&:hover { color: #fff; text-shadow: #000 0 1px 0; } }
|
|
|
|
|
|
|
|
.theme-switch-dark {
|
2010-11-27 23:13:47 +00:00
|
|
|
cursor: pointer;
|
|
|
|
a { color: #000; color: rgba(#000, .8); text-shadow: rgba(#fff, .08) 0 1px 0; }
|
|
|
|
&:hover a { color: #eee; text-shadow: #000 0 1px 0; } }
|
2010-11-23 21:34:29 +00:00
|
|
|
|
|
|
|
.selected-marker-dark {
|
|
|
|
a:before{ border-bottom-color: #121212; }
|
|
|
|
&:before { border-bottom-color: #414141; }
|
|
|
|
&:after { border-bottom-color: #323232; }
|
|
|
|
}
|
2010-11-24 23:43:25 +00:00
|
|
|
.mixin-panel-dark {
|
|
|
|
@extend .inset-panel-dark;
|
|
|
|
td.gutter { background: rgba(#fff, .05); .line { border-right: 2px solid rgba(#fff, .15); color: rgba(#fff, .5); }}
|
|
|
|
}
|
2010-11-23 21:34:29 +00:00
|
|
|
|
2010-11-27 23:13:47 +00:00
|
|
|
@mixin dark-theme($docs: false) {
|
|
|
|
$page-bg: #2f2f2f;
|
2010-11-17 05:03:42 +00:00
|
|
|
|
2010-11-23 06:09:18 +00:00
|
|
|
$text: #c6c6c6;
|
2010-11-21 23:33:58 +00:00
|
|
|
$heading: white;
|
|
|
|
$strong-text: #dbdbdb;
|
2010-11-17 05:03:42 +00:00
|
|
|
|
2010-11-21 23:33:58 +00:00
|
|
|
$search: #6e6e6e;
|
2010-11-23 06:09:18 +00:00
|
|
|
|
2010-11-27 23:13:47 +00:00
|
|
|
$code: #dadbb1;
|
2010-11-21 23:33:58 +00:00
|
|
|
$nav-link: #bfbfbf;
|
2010-11-27 23:13:47 +00:00
|
|
|
$link: saturate(lighten(#85AFC9, 4), 19);
|
2010-11-17 05:03:42 +00:00
|
|
|
|
2010-11-21 23:33:58 +00:00
|
|
|
$main-nav: $strong-text;
|
|
|
|
$main-nav-selected: #fb292d;
|
2010-11-22 00:33:38 +00:00
|
|
|
$docs-nav-selected: $strong-text;
|
2010-11-21 23:33:58 +00:00
|
|
|
$module-nav-selected: $link;
|
2010-11-17 05:03:42 +00:00
|
|
|
|
2010-11-23 21:34:29 +00:00
|
|
|
$option-panel-border: rgba(#000, .3);
|
|
|
|
$option-panel-bg: rgba(#fff, .03);
|
2010-11-27 23:13:47 +00:00
|
|
|
|
|
|
|
@include site-theme(dark, $page-bg, $text, $strong-text, $heading, $link, $code, $search, $nav-link, $main-nav, $main-nav-selected, $option-panel-border, $option-panel-bg);
|
|
|
|
|
|
|
|
@if($docs){
|
|
|
|
@include docs-theme(dark, $heading, $code, $nav-link, $docs-nav-selected, $module-nav-selected);
|
|
|
|
.syntaxhighlighter::-webkit-scrollbar-track-piece { -webkit-box-shadow: rgba(#000, .5) 0 0 3px 1px inset; background: rgba(#000, .2); }
|
|
|
|
.syntaxhighlighter::-webkit-scrollbar-thumb:horizontal { background: -webkit(linear-gradient(rgba(#fff, .3), rgba(#fff, 0))) #000; -webkit-box-shadow: rgba(black, 0.8) 0px 0 0 1px inset; }
|
|
|
|
}
|
2010-11-23 06:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Light Theme
|
|
|
|
.inset-panel-light {
|
2010-11-23 21:34:29 +00:00
|
|
|
@include box-shadow(rgba(#fff, 1) 0 1px 0, rgba(#000, .5) 0 1px 3px 0px inset);
|
|
|
|
text-shadow: 0 1px 1px #fff;
|
|
|
|
background-color: rgba(#000, .04); }
|
2010-11-23 06:09:18 +00:00
|
|
|
|
|
|
|
.horizontal-rule-light {
|
|
|
|
@include single-box-shadow(rgba(#fff, 1), 0, 1px, 0);
|
|
|
|
border-bottom: 1px solid #bbb; }
|
|
|
|
|
|
|
|
.vertical-rule-light {
|
|
|
|
@include single-box-shadow(rgba(#fff, 1), 1px, 0, 0);
|
|
|
|
border-right: 1px solid #bbb; }
|
|
|
|
|
2010-11-27 23:13:47 +00:00
|
|
|
.code-block-light { @extend .code-block; @extend .inset-panel-light; background: rgba(#fff, .5); }
|
2010-11-23 21:34:29 +00:00
|
|
|
|
|
|
|
.syntax-switch-light {
|
|
|
|
color: rgba(#000, .3); text-shadow: rgba(#fff, .08) 0 1px 0;
|
|
|
|
&:hover { color: #000; text-shadow: #fff 0 1px 0; }}
|
|
|
|
|
|
|
|
.theme-switch-light {
|
2010-11-27 23:13:47 +00:00
|
|
|
cursor: pointer;
|
|
|
|
a {color: rgba(#000, .2); text-shadow: rgba(#fff, 1) 0 1px 0;}
|
|
|
|
&:hover a { color: #000; } }
|
2010-11-23 21:34:29 +00:00
|
|
|
|
|
|
|
.heading-panel-light {
|
2010-11-27 23:13:47 +00:00
|
|
|
background: rgba(#fff, .5);
|
|
|
|
@include box-shadow(rgba(#000, .13) 0 0 0 1px inset);
|
2010-11-23 21:34:29 +00:00
|
|
|
a:hover { color: #000;
|
|
|
|
.arg { color: rgba(#000, .6); } }
|
|
|
|
}
|
|
|
|
|
|
|
|
.selected-marker-light {
|
|
|
|
a:before{ border-bottom-color: #bbbbbb; }
|
|
|
|
&:before { border-bottom-color: #fff; }
|
|
|
|
&:after { border-bottom-color: #e5e5e5; }
|
|
|
|
}
|
|
|
|
|
|
|
|
.doc-panel-light {
|
2010-11-27 23:13:47 +00:00
|
|
|
background: rgba(#000, .03);
|
|
|
|
text-shadow: rgba(#fff, .9) 0 1px 1px;
|
2010-11-23 21:34:29 +00:00
|
|
|
@include box-shadow(rgba(#000, .15) 0 0 0 1px inset);
|
|
|
|
}
|
2010-11-23 06:09:18 +00:00
|
|
|
|
2010-11-24 23:43:25 +00:00
|
|
|
.mixin-panel-light {
|
|
|
|
@extend .inset-panel-light;
|
2010-11-27 23:13:47 +00:00
|
|
|
background: rgba(#fff, .8);
|
2010-11-24 23:43:25 +00:00
|
|
|
td.gutter { background: rgba(#000, .08); .line { border-right: 2px solid rgba(#000, .2); color: rgba(#000, .4); } }
|
|
|
|
}
|
|
|
|
|
2010-11-27 23:13:47 +00:00
|
|
|
@mixin light-theme($docs: false) {
|
2010-11-23 21:34:29 +00:00
|
|
|
$page-bg: #ececec; // image-url('bg-light.jpg');
|
2010-11-23 06:09:18 +00:00
|
|
|
|
|
|
|
$text: #222 ;
|
2010-11-27 23:13:47 +00:00
|
|
|
$heading: #444;
|
2010-11-23 06:09:18 +00:00
|
|
|
$strong-text: #000;
|
|
|
|
|
|
|
|
$search: #666;
|
|
|
|
|
2010-11-23 21:34:29 +00:00
|
|
|
$link: #307eb6;
|
|
|
|
$nav-link: #555;
|
|
|
|
$code: #222;
|
2010-11-23 06:09:18 +00:00
|
|
|
|
2010-11-23 21:34:29 +00:00
|
|
|
$main-nav: #555;
|
|
|
|
$main-nav-selected: darken(#fb292d, 15);
|
2010-11-23 06:09:18 +00:00
|
|
|
$docs-nav-selected: $strong-text;
|
|
|
|
$module-nav-selected: $link;
|
|
|
|
|
2010-11-23 21:34:29 +00:00
|
|
|
$option-panel-border: rgba(#000, .2);
|
|
|
|
$option-panel-bg: #fff;
|
2010-11-23 06:09:18 +00:00
|
|
|
|
2010-11-27 23:13:47 +00:00
|
|
|
@include site-theme(light, $page-bg, $text, $strong-text, $heading, $link, $code, $search, $nav-link, $main-nav, $main-nav-selected, $option-panel-border, $option-panel-bg);
|
|
|
|
|
|
|
|
@if($docs){
|
|
|
|
@include docs-theme(light, $heading, $code, $nav-link, $docs-nav-selected, $module-nav-selected);
|
|
|
|
.syntaxhighlighter::-webkit-scrollbar-track-piece { -webkit-box-shadow: rgba(#000, .3) 0 0 3px 1px inset; background: rgba(#ddd, .8); }
|
|
|
|
.syntaxhighlighter::-webkit-scrollbar-thumb:horizontal { background: -webkit(linear-gradient(rgba(#000, 0) 40%, rgba(#000, .2))) #fff; -webkit-box-shadow: rgba(black, 0.2) 0px 0 0 1px inset; }
|
|
|
|
}
|
2010-11-24 23:43:25 +00:00
|
|
|
}
|