This is an example of a gist.
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
# I Pledge To Be Better | |
I want our industry to be a safe, welcoming and inclusive place for everyone, regardless of | |
their gender, abilities, skin colour, sexuality, age, class, neuro-diversity or any other attribute. | |
I acknowledge that this is not currently the case, and will do my best, to the extent that I can | |
afford to dedicate to this, to help make ours a better community and industry. | |
I value the diversity of perspectives that people with different backgrounds bring to the table. | |
I will call out exclusionary practices, behaviors or cultures and see how, together, we can perhaps | |
reshape them to be inclusive and supportive instead. |
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
<meta name="viewport" content="width=device-width"> |
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
article { | |
font-size: 14px; | |
line-height: 25px; | |
h2 { | |
font-size: 18px; | |
padding-bottom: 15px; | |
} | |
@media only screen and (min-width: 300px) { |
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
/* initial rule for all viewports, including browsers that don't support @media */ | |
article { | |
font-size: 14px; | |
line-height: 25px; | |
} | |
article h2 { | |
font-size: 18px; | |
padding-bottom: 15px; | |
} |
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
/* written in plain old CSS */ | |
.module h3 { | |
font-weight: bold; | |
} | |
.module p { | |
padding-bottom: 10px; | |
} |
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
// A few variables thrown in for good measure | |
$border-colour: #a4a4a4; | |
$unit: 10px; | |
@mixin subtle-shadow { | |
-webkit-box-shadow: 0px 2px 5px 0px rgba(200, 200, 200, 0.6); | |
box-shadow: 0px 2px 5px 0px rgba(200, 200, 200, 0.6); | |
} | |
@mixin shadow-border { |
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
@mixin shadow-border { | |
border-bottom: 1px solid #a4a4a4; | |
-webkit-box-shadow: 0px 2px 5px 0px rgba(200, 200, 200, 0.6); | |
box-shadow: 0px 2px 5px 0px rgba(200, 200, 200, 0.6); | |
padding-bottom: 20px; | |
margin-bottom: 40px; | |
} |
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
@mixin shadow-border { | |
border-bottom: 1px solid #a4a4a4; | |
-webkit-box-shadow: 0px 2px 5px 0px rgba(200, 200, 200, 0.6); | |
box-shadow: 0px 2px 5px 0px rgba(200, 200, 200, 0.6); | |
padding-bottom: 20px; | |
margin-bottom: 40px; | |
} |
NewerOlder