I try to make my themes as customizable by variables as possible. In this gist we setup default variables, then some helper variables and inject pieces of the background mixin based on what has been set in our default variables.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "compass/css3" | |
html, #Top, #Footer | |
:background-color #4C5358 !important | |
ol | |
:list-style-type decimal !important | |
#Top | |
+linear-gradient(color-stops(#79868E, #4C5358)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Download & Install VirtualBox | |
http://www.virtualbox.org/wiki/Downloads | |
Decide which versions of Internet Explorer you want to download and install from Terminal | |
Install ALL versions of Internet Explorer: IE7, IE 8, and IE 9 | |
curl -s https://raw.github.com/xdissent/ievms/master/ievms.sh | bash | |
Install Internet Explorer 7 Only | |
curl -s https://raw.github.com/xdissent/ievms/master/ievms.sh | IEVMS_VERSIONS="7" bash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Colors | |
$default-title-color: #a2ce54 !default; | |
$default-header-color: #444444 !default; | |
$default-subheader-color: #666666 !default; | |
$default-text-color: #555555 !default; | |
$default-alt-text-color: #777777 !default; | |
$default-subdued-text-color: #999999 !default; | |
$default-link-color: #318ab9 !default; | |
$default-link-hover-color: #3c9ccf !default; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "compass", | |
"blueprint", | |
"particle", | |
"particle/layout"; | |
$default-asset-path: "/portals/_assets" !default; | |
// Colors | |
$default-primary-color: #860108 !default; | |
$default-secondary-color: #ECECEC !default; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="member member-small"> | |
<img class="MPortrait" src="" alt="" /> | |
<span class="MName"> | |
</span> | |
<span class="MDetails"> | |
<span class="MDEmail"> | |
<a class="btn" href="mailto:">Email</a> | |
</span> | |
<span class="MDPhone"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container-with-floats-height-fix { | |
height: 1%; | |
overflow: hidden; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$start-color:#2B73A2; | |
$number: 12; | |
@for $i from 1 through $number { | |
.label-#{$i} { | |
color:adjust_hue($start-color, ($i - 1) * (360 / $number)); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (window.top !== window.self) window.top.location = window.self.location.href |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Credit & Preview: http://playground.deaxon.com/css/progress-bar/ */ | |
@-webkit-keyframes m { | |
0% {background-position:20px 0} 100% {} | |
} | |
@-moz-keyframes m { | |
0% {background-position:20px 0} 100% {background-position:0 0} | |
} | |
body { | |
background:rgb(235,235,240); |