See you there ;)
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
// Passing arguments from a mixin to a content block | |
// Planned for Sass 4 | |
// https://github.com/sass/sass/issues/871 | |
// File: common.scss | |
$theme-colors: ( | |
pink: #FF69B4, | |
orange: #FFA500, | |
); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>MorningJS</title> | |
<style> | |
/* Global styles have no effect on widget */ | |
h1 { | |
font-weight: normal; | |
} |
This files contains my boilerplates for jQuery plugins.
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
%myclass { | |
color: blue; | |
@media (min-width: 600px) { | |
background: red; | |
} | |
@media (min-width: 800px) { | |
font-size: 28px; | |
} | |
} |