summaryrefslogtreecommitdiff
path: root/style.scss
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2011-09-25 00:05:54 -0700
committerLuke Shumaker <lukeshu@sbcglobal.net>2011-09-25 00:05:54 -0700
commit6b26bca2593f258cadbca656924b4e6b5c40a7c7 (patch)
treeef6a78f7fa4e6041d2f590da045e994f993024c3 /style.scss
parent90d0a66ce3ca3e0edd696bdcab9854480783ff74 (diff)
meh do stuff
Diffstat (limited to 'style.scss')
-rw-r--r--style.scss94
1 files changed, 94 insertions, 0 deletions
diff --git a/style.scss b/style.scss
new file mode 100644
index 0000000..9fabbf6
--- /dev/null
+++ b/style.scss
@@ -0,0 +1,94 @@
+/*
+Theme Name: Kil-a-Bytes
+Theme URI: http://mckenzierobotics.org
+
+Author: Luke Shumaker
+Author URI: http://lukeshu.ath.cx
+
+License: GNU General Public License
+License URI: license.txt
+
+Description: HTML5 Theme for FRC team 1024, a child theme of Twenty-Eleven
+Version: 0.1
+
+Template: twentyeleven
+*/
+
+@import "../twentyeleven/style.css";
+@import "logo-style.scss";
+
+$yellow : #FFFF00;
+$background-blue: #2210D2;
+$highlight-blue : #0000FF; //<-lighter that background, darker than light
+$light-blue : #1E90FF;
+
+@mixin gradient($color1, $color2) {
+ background-color: $color1;
+ filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#{$color1}, endColorstr=#{$color2});
+ background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from($color1), to($color2)); // older syntax
+ background-image: -webkit-linear-gradient($color1, $color2);
+ background-image: -moz-linear-gradient($color1, $color2);
+ background-image: -o-linear-gradient($color1, $color2);
+ background-image: linear-gradient($color1, $color2);
+}
+
+body {
+ background-color: $background-blue;
+ #page {
+ box-shadow: 0 .1em 0 #AAAAFF inset;
+ border: {
+ style: solid;
+ width: 0.1em;
+ color: #000099;
+ radius: 2em 2em 0 0;
+ }
+ header#branding {
+ border: none;
+ hgroup {
+ margin: 0;
+
+ min-height: 175px;
+ background: {
+ //color: $background-blue;
+ image: url('img/swoosh.png');
+ repeat: no-repeat;
+ position: right bottom;
+ }
+
+ padding: 2em 50% 0 3em;
+ overflow: hidden;
+ /* border: solid 1px red; */
+ a {
+ text-decoration: inherit;
+ color: inherit;
+ }
+ #team-name {
+ font-size: 80px;
+ @include logo-nowhite;
+ }
+ h2 {
+ font-size: 40px;
+ @include logo-nowhite;
+ }
+ #team-number {
+ position: absolute;
+ bottom: 0.2em;
+ right: 0.4em;
+ font-size: 130px;
+ line-height: 1em;
+ @include logo-white;
+ }
+ }
+ }
+ #access {
+ box-shadow: none;
+ border-top: solid 0.2em $yellow;
+ @include gradient($light-blue, $highlight-blue);
+ }
+ }
+}
+
+/*div.menu-wp_nav_menu-container {
+ margin: 0 .5em !important;
+}
+*/ \ No newline at end of file