// jQuery
$(document).ready(function() {
// code
})
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
/** | |
* Header Underline Reduced Case | |
*/ | |
body { | |
font-family:Arial, sans-serif; | |
line-height:1; | |
} | |
.title { |
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
/** | |
* Text align within circle | |
*/ | |
.info-title { | |
text-align: center; | |
color: #fff; | |
line-height: 1; | |
margin: 2em auto; | |
width: 4em; |
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
/** | |
* Inline-Block Grid | |
*/ | |
* { | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
} |
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
/** | |
* Expanding Title | |
*/ | |
a { | |
text-decoration: none; | |
background-color: #000; | |
float: left; | |
position: relative; | |
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
/** | |
* Chrome border-radius bug | |
*/ | |
body { | |
background-color: #777; | |
} | |
.wrapper { | |
position:relative; | |
width:200px; |
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
/** | |
* Collapsing Title | |
*/ | |
a { | |
text-decoration: none; | |
background-color: #000; | |
float: left; | |
position: relative; | |
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
/** | |
* Animated CSS hover effect | |
Replicate: | |
http://www.vanschneider.com/ */ | |
body { | |
background-color: #000; | |
} |
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
/** | |
* Site Nav Idea | |
*/ | |
body { font:1em/1.5 Georgia, serif; } | |
.nav { margin-left: 0; list-style: none; } | |
.nav li { display: inline; } | |
.nav a { display: inline-block; text-decoration: none; } | |
.dropdown { position: absolute; visibility: hidden; } | |
.site-nav > li { |
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
/** | |
* Abstract Border Radius Shapes | |
*/ | |
.shape { | |
background-color: hsla(50,100%,50%,1); | |
width: 10%; | |
height: 7em; | |
margin: 2em auto; | |
border-radius: 90% 10% 90% 10% / 50% 10% 50% 10%; |
NewerOlder