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
/** | |
* You should write comments in your code | |
* | |
* Slide from "Learning to teach" presentation by Bartek Szopka | |
* Front-Trends 2012 | |
*/ | |
@import url(http://fonts.googleapis.com/css?family=The+Girl+Next+Door); | |
html, body { |
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
/** | |
* writer.css by Bartek Szopka @bartaz | |
* | |
* CSS inspired by markdown styles of iA Writer Mac app. | |
* | |
* Based on iA Writer markdown guide: | |
* http://support.iawriter.com/help/kb/frequently-asked-questions-in-general/markdown-syntax-reference-guide | |
*/ | |
/* Nitti Light that is used by Writer is not a free font, |
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
/** | |
* Binary switcher | |
*/ | |
body { | |
font-family: monospace; | |
font-size: 20px; | |
} | |
span { |
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
/* | |
Two circles connected with a line. | |
See: https://github.com/bartaz/impress.js/issues/460 | |
*/ | |
body { | |
background: #BADA55; | |
} | |
.step { |
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 hideshow { | |
0% { opacity: 1; } 100% { opacity: 0; } | |
} | |
.css-animate rect { | |
animation: hideshow 1s linear infinite; | |
} | |
.css-animate rect:nth-child(1) { animation-delay: 0.0s } | |
.css-animate rect:nth-child(2) { animation-delay: 0.08333333333333333s } |
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 hideshow { | |
0% { opacity: 1; } 100% { opacity: 0; } | |
} | |
.css-animate rect { | |
animation: hideshow 1s linear infinite; | |
} | |
.css-animate rect:nth-child(1) { animation-delay: 0.0s } | |
.css-animate rect:nth-child(2) { animation-delay: 0.08333333333333333s } |
OlderNewer