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
/** | |
* Hover me | |
*/ | |
blockquote | |
{ | |
font: italic 1.25em/1.5 Georgia, serif; | |
max-width: 21.5em; | |
height: 1.5em; | |
overflow: hidden; |
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
/** | |
* Flexbox | |
*/ | |
* { box-sizing: border-box } | |
section | |
{ | |
display: flex; | |
flex-wrap: wrap; |
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
/** | |
* 1, 2, 3, Action! | |
*/ | |
@keyframes one | |
{ | |
from { opacity: 0 } | |
19% { opacity: 0 } | |
21% { opacity: 1 } | |
39% { opacity: 1 } |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin klassen($anfang, $ende) | |
{ | |
$klassen: (); | |
@for $n from $anfang through $ende |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$klassen: (); | |
@for $n from 1 through 5 | |
{ | |
$klassen: append($klassen, ".klasse_#{$n}", comma); |
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
/** | |
* number input text | |
*/ | |
:invalid { background: #FCC } |
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
/** | |
* responsive heading text | |
*/ | |
:invalid { background: #FCC } |
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
/** | |
* responsive heading text | |
*/ | |
:invalid { background: #FCC } |
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
/** | |
* responsive stack | |
*/ | |
* { box-sizing: border-box } | |
html, body {margin: 0; padding: 0 } | |
ul { padding: 0; list-style: none } |
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 and text input | |
*/ | |
select, input | |
{ | |
border: 1px solid silver; | |
padding: 1em; | |
} |