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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$height: 14px; | |
$half: $height / 2; | |
.element { | |
height: $height; | |
border-radius: $half; |
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
.box { | |
width: 800px; | |
background: yellow; | |
} | |
iframe { | |
margin: auto; | |
display: block; | |
} |
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
h1, .h1 { | |
font-size: 2rem; | |
} | |
h2, .h2 { | |
font-size: 1.5rem; | |
} | |
h2, .h3 { | |
font-size: 1.2rem; | |
} |
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
@keyframes slide-up-fade-in { | |
0% { display:none; opacity: 0.25; } | |
1% { display: block ; opacity: 0; } | |
100% { display: block ; opacity: 1; } | |
} | |
.menu { | |
height: 100px; | |
background: red; | |
} |
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
.cursor { | |
font-weight: 100; | |
font-size: 30px; | |
color: black; | |
} | |
.blinking { | |
-webkit-animation: 1s blink step-end infinite; | |
-moz-animation: 1s blink step-end infinite; | |
-ms-animation: 1s blink step-end infinite; | |
-o-animation: 1s blink step-end infinite; |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
body { | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; | |
} | |
div { |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
body { | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; | |
} | |
div { |
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
box { | |
height: 150px; | |
width: 300px; | |
margin: 20px; | |
border: 1px solid #ccc; | |
} | |
.top { | |
box-shadow: 0 -5px 5px -5px #333; | |
} |
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
box { | |
height: 150px; | |
width: 300px; | |
margin: 20px; | |
border: 1px solid #ccc; | |
} | |
.top { | |
box-shadow: 0 -5px 5px -5px #333; | |
} |