aboutsummaryrefslogtreecommitdiff
path: root/themes/classic/sass/default/partials
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-06-07 16:12:46 -0400
committerBrandon Mathis <brandon@imathis.com>2011-06-07 16:12:46 -0400
commitaa230616241321ca9c4b8f4202d045c829527618 (patch)
treea3421f7253257f8644ff9adb956af3575a4eec9d /themes/classic/sass/default/partials
parent6cba2145136309d2ac5202853b554f0471a67bf0 (diff)
downloadmy_new_personal_website-aa230616241321ca9c4b8f4202d045c829527618.tar.xz
my_new_personal_website-aa230616241321ca9c4b8f4202d045c829527618.zip
Added themes directory, improved javascript load and minification.
Diffstat (limited to 'themes/classic/sass/default/partials')
-rw-r--r--themes/classic/sass/default/partials/_blog.scss54
-rw-r--r--themes/classic/sass/default/partials/_delicious.scss4
-rw-r--r--themes/classic/sass/default/partials/_footer.scss17
-rw-r--r--themes/classic/sass/default/partials/_header.scss11
-rw-r--r--themes/classic/sass/default/partials/_navigation.scss116
-rw-r--r--themes/classic/sass/default/partials/_page.scss18
-rw-r--r--themes/classic/sass/default/partials/_pinboard.scss12
-rw-r--r--themes/classic/sass/default/partials/_search.scss0
-rw-r--r--themes/classic/sass/default/partials/_sidebar.scss55
-rw-r--r--themes/classic/sass/default/partials/_syntax.scss167
-rw-r--r--themes/classic/sass/default/partials/_twitter.scss33
11 files changed, 487 insertions, 0 deletions
diff --git a/themes/classic/sass/default/partials/_blog.scss b/themes/classic/sass/default/partials/_blog.scss
new file mode 100644
index 00000000..4a3312b5
--- /dev/null
+++ b/themes/classic/sass/default/partials/_blog.scss
@@ -0,0 +1,54 @@
+#articles {
+ > article {
+ padding-bottom: 1em;
+ &:last-child { margin-bottom: 0; border-bottom: none; }
+ h2 {
+ padding-top: 0.8em;
+ //border-top: 3px double $type-border;
+ background: inline-image('dotted-border.png') top left repeat-x;
+ }
+ .byline + time:before, .byline + time +time:before {
+ content: "\2022 ";
+ padding: 0 .3em 0 .2em;
+ display: inline-block;
+ @include opacity(.5);
+ }
+ header {
+ padding-top: 2em;
+ margin-bottom: 1.5em;
+ padding-bottom: 1.5em;
+ background: inline-image('dotted-border.png') bottom left repeat-x;
+ h1 {
+ margin: 0;
+ a { text-decoration: none;
+ &:hover { text-decoration: underline; } }
+ }
+ p {
+ font-size: .9em;
+ color: $type-color-light;
+ border: none;
+ padding-top: 0;
+ margin: 0;
+ font-style: italic;
+ font-family: "Georgia", Palatino, Times, "Times New Roman";
+ }
+ }
+ .entry-content {
+ img { max-width: 100%; }
+ }
+ #disqus_thread { }
+ .meta {
+ border-bottom: 1px dashed #dddddd;
+ text-transform: uppercase;
+ color: #777777;
+ padding: 8px 0 5px;
+ margin-bottom: 1.5em;
+ font-size: 75%;
+ letter-spacing: 1px;
+ }
+
+ .footer {
+ padding-top: 15px;
+ }
+ }
+}
diff --git a/themes/classic/sass/default/partials/_delicious.scss b/themes/classic/sass/default/partials/_delicious.scss
new file mode 100644
index 00000000..e962702e
--- /dev/null
+++ b/themes/classic/sass/default/partials/_delicious.scss
@@ -0,0 +1,4 @@
+.delicious-posts {
+ a.delicious-link { margin-bottom: .5em; display: block; }
+ p { font-size: 1em; }
+}
diff --git a/themes/classic/sass/default/partials/_footer.scss b/themes/classic/sass/default/partials/_footer.scss
new file mode 100644
index 00000000..4ec28b7a
--- /dev/null
+++ b/themes/classic/sass/default/partials/_footer.scss
@@ -0,0 +1,17 @@
+body > footer {
+ @extend .sans;
+ font-size: .8em;
+ color: $nav-color;
+ text-shadow: lighten($footer-bg, 5) 0 1px;
+ background-color: $footer-bg;
+ @include background(linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11)));
+ border-top: 1px solid $footer-border;
+ position: relative;
+ padding-top: 1em;
+ padding-bottom: 1em;
+ z-index: 1;
+ a {
+ @include link-colors($nav-color, $nav-color-hover);
+ }
+ p:last-child { margin-bottom: 0; }
+}
diff --git a/themes/classic/sass/default/partials/_header.scss b/themes/classic/sass/default/partials/_header.scss
new file mode 100644
index 00000000..63a58c6a
--- /dev/null
+++ b/themes/classic/sass/default/partials/_header.scss
@@ -0,0 +1,11 @@
+body > header {
+ background-color: $header_bg;
+ h1 {
+ display: inline-block;
+ margin: 0;
+ a, a:visited {
+ color: $title_color;
+ text-decoration: none;
+ }
+ }
+}
diff --git a/themes/classic/sass/default/partials/_navigation.scss b/themes/classic/sass/default/partials/_navigation.scss
new file mode 100644
index 00000000..ecc29e4e
--- /dev/null
+++ b/themes/classic/sass/default/partials/_navigation.scss
@@ -0,0 +1,116 @@
+body > nav {
+ position: relative;
+ background-color: $nav-bg;
+ @include background(linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11)));
+ border: {
+ top: 1px solid $nav-border-top;
+ bottom: 1px solid $nav-border-bottom; }
+ padding-top: .35em;
+ padding-bottom: .35em;
+ //position: absolute; left: 0; right: 0; top: 0;
+ form {
+ @include background-clip(padding-box);
+ margin: 0; padding: 0;
+ .search {
+ padding: .25em .5em 0;
+ font-size: .85em;
+ line-height: 1em;
+ width: 95%;
+ @include border-radius(.5em);
+ @include background-clip(padding-box);
+ @include box-shadow(lighten($nav-bg, 2) 0 1px);
+ background-color: lighten($nav-bg, 15);
+ border: 1px solid $nav-border;
+ color: #888;
+ &:focus {
+ color: #444;
+ border-color: #80b1df;
+ @include box-shadow(#80b1df 0 0 4px, #80b1df 0 0 3px inset);
+ background-color: #fff;
+ outline: none;
+ }
+ }
+ }
+ fieldset[role=site-search]{ float: right; width: 48%; }
+ fieldset[role=mobile-nav]{ float: left; width: 48%;
+ select{ width: 100%; font-size: .8em; border: 1px solid #888;}
+ }
+ ul { display: none; }
+ @media only screen and (min-width: 550px) {
+ font-size: .9em;
+ ul {
+ @include horizontal-list(0);
+ float: left;
+ //float: right;
+ display: block;
+ padding-top: .25em;
+ }
+ ul[role=subscription] {
+ margin-left: .8em;
+ float: right;
+ li:last-child a { padding-right: 0; }
+ }
+ ul li {
+ margin: 0;
+ }
+ a {
+ @include link-colors($nav-color, $nav-color-hover, $visited: $nav-color);
+ @extend .sans;
+ text-shadow: lighten($nav-bg, 12) 0 1px;
+ float: left;
+ text-decoration: none;
+ font-size: .9em;
+ padding: .1em 0;
+ line-height: 1.5em;
+ }
+ li + li {
+ border-left: 1px solid $nav-border-left;
+ margin-left: .8em;
+ a {
+ padding-left: .8em;
+ border-left: 1px solid $nav-border-right;
+ }
+ }
+ fieldset[role=mobile-nav] { display: none; }
+ fieldset[role=site-search]{ width: 100%; }
+ form {
+ float: right;
+ text-align: left;
+ width: $sidebar-width-medium - $pad-medium*2 - $sidebar-pad-medium + 5px;
+ padding-left: .8em;
+ .search {
+ width: 93%;
+ font-size: .95em;
+ line-height: 1.2em;
+ }
+ }
+ }
+
+ @media only screen and (min-width: 992px) {
+ form {
+ width: $sidebar-width-wide - $pad-wide - $sidebar-pad-wide*2 + 5px;
+ }
+ }
+}
+.maskImage {
+ ul[role=subscription] { li, a { border: 0; padding: 0; }}
+ a[rel=subscribe-rss]{
+ position: relative; top: -2px;
+ width: image-width('rss.png');
+ height: image-height('rss.png');
+ @include mask-image('rss.png');
+ text-indent: -999999em;
+ background-color: $nav-border-right;
+ border: 0;
+ padding: 0;
+ &:hover:after { background-color: darken($nav-border-left, 10); }
+ &:after {
+ content: "";
+ @include mask-image('rss.png');
+ width: image-width('rss.png');
+ height: image-height('rss.png');
+ position: absolute; top: -1px; left: 0;
+ background-color: $nav-border-left;
+ }
+ }
+}
diff --git a/themes/classic/sass/default/partials/_page.scss b/themes/classic/sass/default/partials/_page.scss
new file mode 100644
index 00000000..cb0aa27a
--- /dev/null
+++ b/themes/classic/sass/default/partials/_page.scss
@@ -0,0 +1,18 @@
+html {
+ background: $page-bg inline-image('line-tile.png') top left;
+}
+body {
+ border: 0 0 1px 0 solid darken($page-bg, 5);
+ > div {
+ background-color: $sidebar-bg;
+ border-bottom: 1px solid $nav-border-bottom;
+ > div {
+ background-color: $main-bg;
+ border-right: 1px solid $sidebar-border;
+ }
+ }
+}
+
+@media only screen and (min-width: 1400px) {
+ body { border: 0 1px 0 solid darken($page-bg, 5); }
+}
diff --git a/themes/classic/sass/default/partials/_pinboard.scss b/themes/classic/sass/default/partials/_pinboard.scss
new file mode 100644
index 00000000..9f9ab461
--- /dev/null
+++ b/themes/classic/sass/default/partials/_pinboard.scss
@@ -0,0 +1,12 @@
+#pinboard_linkroll {
+ .pin-title, .pin-description {
+ display: block;
+ margin-bottom: .5em;
+ }
+ .pin-tag {
+ @include hover-link;
+ @extend .aside-alt-link;
+ &:after { content: ','; }
+ &:last-child:after { content: ''; }
+ }
+}
diff --git a/themes/classic/sass/default/partials/_search.scss b/themes/classic/sass/default/partials/_search.scss
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/themes/classic/sass/default/partials/_search.scss
diff --git a/themes/classic/sass/default/partials/_sidebar.scss b/themes/classic/sass/default/partials/_sidebar.scss
new file mode 100644
index 00000000..046068d1
--- /dev/null
+++ b/themes/classic/sass/default/partials/_sidebar.scss
@@ -0,0 +1,55 @@
+.side-shadow-border {
+ @include box-shadow(#fff 0 1px);
+}
+#articles + aside {
+ padding-top: 1.2em;
+ section {
+ @extend .sans;
+ font-size: .8em;
+ line-height: 1.5em;
+ margin-bottom: 1.5em;
+ h1 {
+ margin: 1.5em 0 0;
+ padding-bottom: .2em;
+ border-bottom: 1px solid $sidebar-border;
+ @extend .side-shadow-border;
+ + p {
+ padding-top: .4em;
+ }
+ }
+ }
+ ul {
+ margin-bottom: 0.5em;
+ }
+ li {
+ list-style: none;
+ padding: .5em 0;
+ margin: 0;
+ border-bottom: 1px solid $sidebar-border;
+ @extend .side-shadow-border;
+ p:last-child {
+ margin-bottom: 0;
+ }
+ }
+ a {
+ color: inherit;
+ @include transition(color, .5s);
+ }
+ &:hover a, &:hover #tweets a { color: $link-color; }
+ #recent_posts {
+ time {
+ text-transform: uppercase;
+ font-size: .9em;
+ color: #666;
+ }
+ }
+ @import "twitter";
+ @import "pinboard";
+ @import "delicious";
+}
+.aside-alt-link {
+ color: #999;
+ &:hover {
+ color: #555;
+ }
+}
diff --git a/themes/classic/sass/default/partials/_syntax.scss b/themes/classic/sass/default/partials/_syntax.scss
new file mode 100644
index 00000000..5797c28f
--- /dev/null
+++ b/themes/classic/sass/default/partials/_syntax.scss
@@ -0,0 +1,167 @@
+$base03: #002b36; //darkest blue
+$base02: #073642; //dark blue
+$base01: #586e75; //darkest gray
+$base00: #657b83; //dark gray
+$base0: #839496; //medium gray
+$base1: #93a1a1; //medium light gray
+$base2: #eee8d5; //cream
+$base3: #fdf6e3; //white
+$yellow: #b58900;
+$orange: #cb4b16;
+$red: #dc322f;
+$magenta: #d33682;
+$violet: #6c71c4;
+$blue: #268bd2;
+$cyan: #2aa198;
+$green: #859900;
+
+// If you prefer light colors, uncomment the following block to change themes
+//$base03: $base3;
+//$base02: $base2;
+//$base01: $base1;
+//$base00: $base0;
+//$base0: $base00;
+//$base1: $base01;
+//$base2: $base02;
+//$base3: $base03;
+
+.gutter {
+ .line-numbers {
+ text-align: right;
+ background: $base02 !important;
+ border-right: 1px solid darken($base03, 2);
+ @include box-shadow(lighten($base02, 2) -1px 0 inset);
+ text-shadow: darken($base02, 10) 0 -1px;
+ span { color: $base01 !important; }
+ }
+}
+html .gist .gist-file {
+ margin-bottom: 1.5em;
+ border: none;
+ .gist-syntax {
+ border-bottom: 1px solid #515151 !important;
+ .gist-highlight{
+ background: $base03 !important;
+ pre {
+ @extend .pre;
+ overflow-y: hidden;
+ overflow-x: auto;
+ }
+ }
+ }
+ .gist-meta {
+ @include background(linear-gradient(#b0b0b0, #a7a7a7));
+ padding: 0.5em;
+ background-color: #bababa !important;
+ border: 1px solid #9c9c9c;
+ border-top: 1px solid #d0d0d0;
+ border-bottom: 1px solid #777777;
+ font-size: .7em !important;
+ font-family: "Helvetica Neue", Arial, sans-serif !important;
+ color: #464646 !important;
+ line-height: 1.4em;
+ }
+}
+pre { @extend .pre; }
+
+.pre {
+ @extend .mono;
+ font-size: .8em;
+ line-height: 1.45em;
+ padding: 1em 1.2em !important;
+ background: $base03 !important;
+ color: $base1 !important;
+ span { color: $base1 !important; }
+ span { font-style: normal !important; font-weight: normal !important; }
+
+ .c { color: $base01 !important; font-style: italic !important; } /* Comment */
+ .cm { color: $base01 !important; font-style: italic !important; } /* Comment.Multiline */
+ .cp { color: $base01 !important; font-style: italic !important; } /* Comment.Preproc */
+ .c1 { color: $base01 !important; font-style: italic !important; } /* Comment.Single */
+ .cs { color: $base01 !important; font-weight: bold !important; font-style: italic !important; } /* Comment.Special */
+ .err { color: $red !important; background: none !important; } /* Error */
+ .k { color: $orange !important; } /* Keyword */
+ .o { color: $base1 !important; font-weight: bold !important; } /* Operator */
+ .p { color: $base1 !important; } /* Operator */
+ .ow { color: $cyan !important; font-weight: bold !important; } /* Operator.Word */
+ .gd { color: $base1 !important; background-color: mix($red, $base03, 25%) !important; display: block; } /* Generic.Deleted */
+ .gd .x { color: $base1 !important; background-color: mix($red, $base03, 35%) !important; display: block; } /* Generic.Deleted.Specific */
+ .ge { color: $base1 !important; font-style: italic !important; } /* Generic.Emph */
+ //.gr { color: #aa0000 } /* Generic.Error */
+ .gh { color: $base01 !important; } /* Generic.Heading */
+ .gi { color: $base1 !important; background-color: mix($green, $base03, 20%) !important; display: block; } /* Generic.Inserted */
+ .gi .x { color: $base1 !important; background-color: mix($green, $base03, 40%) !important; display: block; } /* Generic.Inserted.Specific */
+ //.go { color: #888888 } /* Generic.Output */
+ //.gp { color: #555555 } /* Generic.Prompt */
+ .gs { color: $base1 !important; font-weight: bold !important; } /* Generic.Strong */
+ .gu { color: $violet !important; } /* Generic.Subheading */
+ //.gt { color: #aa0000 } /* Generic.Traceback */
+ .kc { color: $green !important; font-weight: bold !important; } /* Keyword.Constant */
+ .kd { color: $blue !important; } /* Keyword.Declaration */
+ .kp { color: $orange !important; font-weight: bold !important; } /* Keyword.Pseudo */
+ .kr { color: $magenta !important; font-weight: bold !important; } /* Keyword.Reserved */
+ .kt { color: $cyan !important; } /* Keyword.Type */
+ .n { color: $blue !important; }
+ .na { color: $blue !important; } /* Name.Attribute */
+ .nb { color: $green !important; } /* Name.Builtin */
+ //.nc { color: #445588; font-weight: bold } /* Name.Class */
+ .no { color: $yellow !important; } /* Name.Constant */
+ //.ni { color: #800080 } /* Name.Entity */
+ .ne { color: $blue !important; font-weight: bold !important; } /* Name.Exception */
+ .nf { color: $blue !important; font-weight: bold !important; } /* Name.Function */
+ .nn { color: $yellow !important; } /* Name.Namespace */
+ .nt { color: $blue !important; font-weight: bold !important; } /* Name.Tag */
+ .nx { color: $yellow !Important; }
+ //.bp { color: #999999 } /* Name.Builtin.Pseudo */
+ //.vc { color: #008080 } /* Name.Variable.Class */
+ .vg { color: $blue !important; } /* Name.Variable.Global */
+ .vi { color: $blue !important; } /* Name.Variable.Instance */
+ .nv { color: $blue !important; } /* Name.Variable */
+ //.w { color: #bbbbbb } /* Text.Whitespace */
+ .mf { color: $cyan !important; } /* Literal.Number.Float */
+ .m { color: $cyan !important; } /* Literal.Number */
+ .mh { color: $cyan !important; } /* Literal.Number.Hex */
+ .mi { color: $cyan !important; } /* Literal.Number.Integer */
+ //.mo { color: #009999 } /* Literal.Number.Oct */
+ .s { color: $cyan !important; } /* Literal.String */
+ //.sb { color: #d14 } /* Literal.String.Backtick */
+ //.sc { color: #d14 } /* Literal.String.Char */
+ .sd { color: $cyan !important; } /* Literal.String.Doc */
+ .s2 { color: $cyan !important; } /* Literal.String.Double */
+ .se { color: $red !important; } /* Literal.String.Escape */
+ //.sh { color: #d14 } /* Literal.String.Heredoc */
+ .si { color: $blue !important; } /* Literal.String.Interpol */
+ //.sx { color: #d14 } /* Literal.String.Other */
+ .sr { color: $cyan !important; } /* Literal.String.Regex */
+ .s1 { color: $cyan !important; } /* Literal.String.Single */
+ //.ss { color: #990073 } /* Literal.String.Symbol */
+ //.il { color: #009999 } /* Literal.Number.Integer.Long */
+}
+
+.highlight {
+ margin-bottom: 1.5em;
+ overflow-y: hidden;
+ .gutter pre {
+ padding-left: .8em !important;
+ padding-right: .8em !important;
+ }
+}
+
+h3.filename {
+ font-size: 13px;
+ line-height: 2em;
+ text-align: center;
+ text-shadow: #cbcccc 0 1px 0;
+ color: #474747;
+ font-style: normal;
+ margin-bottom: 0;
+
+ @include border-top-radius(5px);
+ font-family: "Helvetica Neue",Arial, "Lucida Grande", "Lucida Sans Unicode", Lucida, sans-serif;
+ background: #aaaaaa image-url("code_bg.png") top repeat-x;
+ border: 1px solid #565656;
+ border-top-color: #cbcbcb;
+ border-left-color: #a5a5a5;
+ border-right-color: #a5a5a5;
+ border-bottom: 0;
+}
diff --git a/themes/classic/sass/default/partials/_twitter.scss b/themes/classic/sass/default/partials/_twitter.scss
new file mode 100644
index 00000000..de7a6930
--- /dev/null
+++ b/themes/classic/sass/default/partials/_twitter.scss
@@ -0,0 +1,33 @@
+#tweets {
+ .loading {
+ background: inline-image('bird_32_gray.png') no-repeat center .5em;
+ color: darken($sidebar-bg, 18);
+ text-shadow: $main-bg 0 1px;
+ text-align: center;
+ padding: 2.5em 0 .5em;
+ &.error {
+ background: inline-image('bird_32_gray_fail.png') no-repeat center .5em;
+ }
+ }
+ a { color: #666; @include hover-link; }
+ p {
+ position: relative;
+ padding-right: 1em;
+ }
+ a[href*='status']{
+ color: #aaa;
+ float: right;
+ padding: 0 0 .1em 1em;
+ position: relative; right: -1.3em;
+ text-shadow: #fff 0 1px;
+ font-size: .7em;
+ span { font-size: 1.5em; }
+ &:hover {
+ color: #555;
+ text-decoration: none;
+ }
+ }
+ a[href*='twitter.com/search']{
+ @extend .aside-alt-link;
+ }
+}