With jq_important.js | It don't need jquery loaded. The script auto load Jquery.
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
#invite{ | |
min-width:200px; | |
max-width:400px; | |
width:200px; | |
height:108px; | |
border:1px solid #274d72; | |
border-left:0; | |
border-right:0; | |
margin:20px auto; |
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
.check{ | |
display:block; | |
float:left; | |
width:55px; | |
height:55px; | |
-webkit-border-radius:55px; | |
background:#ccc; | |
} | |
.check_state{ |
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
<!-- | |
init.css | |
--> | |
<!-- First level h1 : Main title--> | |
<h1>Title</h1> | |
<h1>Title level 2</h1> |
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
$icons: "phone", "twitter", "email"; | |
@each $icon in $icons { | |
.ico{ | |
display: block; | |
&:before{ | |
@include single-element(); | |
@include square(1.2em); | |
} | |
&[class*="ico-#{($icon)}"]{ |
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 li { | |
list-style: none; | |
} | |
ul li:nth-child(1):before, ul li:nth-child(1):after { | |
display: block; | |
color: red; | |
} | |
ul li:nth-child(1):before { | |
content: "one > "; |