It's gone!
See you there ;)
// 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, | |
); |
See you there ;)
<!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.
%myclass { | |
color: blue; | |
@media (min-width: 600px) { | |
background: red; | |
} | |
@media (min-width: 800px) { | |
font-size: 28px; | |
} | |
} |