This file contains 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
select { | |
-webkit-appearance: button; | |
-webkit-border-radius: 3px; | |
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | |
-webkit-padding-end: 20px; | |
-webkit-padding-start: 10px; | |
-webkit-user-select: none; | |
background-image: url("http://dl.dropbox.com/u/6874407/select.png"), -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5) |
This file contains 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
select { | |
-webkit-appearance: button; | |
-webkit-border-radius: 3px; | |
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | |
-webkit-padding-end: 20px; | |
-webkit-padding-start: 8px; | |
-webkit-user-select: none; | |
background-image: url("http://dl.dropbox.com/u/6874407/select.png"), |
This file contains 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
*{ | |
margin:0; | |
panding:0; | |
} | |
html { | |
background: white; | |
font: 86% sans-serif; | |
} |
This file contains 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
#loading | |
/! shadow | |
.outer-shadow | |
/! mask | |
.inner-shadow | |
.load | |
.dot | |
span | |
#left.hold | |
.pie |
This file contains 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
ul.menu li a:link, | |
ul.menu li a:hover, | |
ul.menu li a:focus, | |
ul.menu li a:visited{ | |
color:red; | |
} |
This file contains 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
ul.menu li a:link, | |
ul.menu li a:hover, | |
ul.menu li a:focus, | |
ul.menu li a:visited { | |
color:red; | |
} |
This file contains 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
ul.menu li a:matches(:link,:hover,:focus,:visited) { | |
color:red; | |
} |
This file contains 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
ul.menu li a:matches(.active,.visible,#important) { | |
color:red; | |
} |
This file contains 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
ul.menu li a:not(.active,.visible) { | |
color:red; | |
} |
This file contains 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
// GLOBAL VARIABLE | |
$base-font-size-mobile: 16; | |
$base-font-size-desktop: 18; //min-width: 30em | |
$base-line-height: 1.5; | |
$desktop-width: pxToEm(480); | |
// PX to EM | |
// call: margin-bottom: pxToEm(10); // 10/18= .555555556em |
OlderNewer