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
button { | |
background: #e5ac8e; | |
color: #fff; | |
font-size: 14px; | |
border-radius: 0.5em; | |
padding: 0 1em; | |
position: relative; | |
overflow: hidden; | |
line-height: 32px; | |
} |
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
/* CSS Output */ | |
li { | |
list-style: none; | |
background: #d1703c; | |
color: #fff; | |
height: 0; | |
line-height: 2em; | |
margin: 0; | |
padding: 0 0.5em; |
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
// Clearfix: contain floats | |
// For modern browsers | |
// 1. The space content is one way to avoid an Opera bug when the | |
// `contenteditable` attribute is included anywhere else in the document. | |
// Otherwise it causes space to appear at the top and bottom of elements | |
// that receive the `clearfix` class. | |
// 2. The use of `table` rather than `block` is only necessary if using | |
// `:before` to contain the top-margins of child elements. |
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
@media print { | |
* { | |
background-color: transparent !important; | |
box-shadow: none !important; | |
color: #000 !important; // Black prints faster: h5bp.com/s | |
text-shadow: none !important; | |
} | |
a, | |
a:visited { |
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
@charset "UTF-8"; | |
/* | |
FLUIDITY v0.1.0 | |
@mrmrs • http://mrmrs.cc | |
MIT | |
*/ | |
/* | |
Responsive Utilities |
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
/* CSS Output */ | |
.block { | |
color: red; | |
} | |
.block__element { | |
color: green; | |
} | |
.block__element--modifier { | |
color: blue; |
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
/* CSS Output */ | |
/* Example #1 */ | |
.blog { | |
color: #555; | |
background: tan; | |
width: 800px; | |
height: auto; | |
} | |
.blog__article { |
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
/* CSS Output */ | |
ul { | |
list-style: none; | |
font-size: 16px; | |
line-height: 1.6; | |
} | |
a { | |
text-decoration: none; | |
color: pink; |
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
/* CSS Output */ | |
h1, h2, h3, h4, h5, h6 { | |
display: inline; | |
} | |
/* Example 1: simple @for example */ | |
h1 { | |
font-size: 1em; | |
padding: 20px; | |
} |