This gist contains sample code for use in lessons.
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
// Red | |
@red-50: #fde0dc; | |
@red-100: #f9bdbb; | |
@red-200: #f69988; | |
@red-300: #f36c60; | |
@red-400: #e84e40; | |
@red-500: #e51c23; | |
@red-600: #dd191d; | |
@red-700: #d01716; | |
@red-800: #c41411; |
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
/** | |
* Camera effect | |
*/ | |
body{ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
background-attachment: fixed; | |
background-size: 100px; | |
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
/* CSS Mad Lib Game */ | |
.word { | |
border-bottom: 1px solid black; | |
} | |
p{ | |
margin: 10px 0; | |
padding: 10px; | |
} |
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
/** | |
* Gossmatica button tests | |
*/ | |
body { | |
padding: 0; margin: 0; | |
font-size: 16px; | |
background: black; | |
/*background: linear-gradient(270deg, rgba(0,0,0, 0) 0px, rgba(0,0,0, 0) 23px, rgba(255,0,0, 1) 24px), | |
linear-gradient(180deg, rgba(0,0,0, 1) 0px, rgba(0,0,0, 1) 23px, rgba(255,0,0, 1) 24px);/**/ |