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
<div class="topcoat-button-bar"> | |
<div class="topcoat-button-bar__item"> | |
<button class="topcoat-button">One</button> | |
</div> | |
<div class="topcoat-button-bar__item"> | |
<button class="topcoat-button">Two</button> | |
</div> | |
<div class="topcoat-button-bar__item"> | |
<button class="topcoat-button">Three</button> | |
</div> |
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
/* Somtimes you don't control the order fo concatination for multiple files */ | |
/* <button class="button button--burly">Burly?</button> */ | |
.button--burly { | |
background-color: BurlyWood !important; | |
} | |
/* Some thousand lines later */ | |
.button { |
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
header > p { | |
/* Styles for all <p> in a <header> */ | |
} | |
/* Wait, you have to style a <p> differently based on context!? */ | |
section > header > p { | |
/* Styles for all <p> in a header, in a section */ | |
/* Because you never need to style it differently right!? */ | |
} |
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
.button { | |
background-color: Aqua; | |
} | |
/* Some thousand lines later */ | |
.button { | |
background-color: BurlyWood; | |
} |
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
/* normal flexbox */ | |
.flexbox .flex-container { | |
display: -webkit-flex; | |
display: -moz-flex; | |
display: -ms-flex; | |
display: flex; | |
} | |
.flexbox .flex-container.vertical { | |
display: -webkit-flex; | |
display: -moz-flex; |
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
" Vim color file - Kal_El | |
" @dam <3's you | |
set background=dark | |
if version > 580 | |
hi clear | |
if exists("syntax_on") | |
syntax reset | |
endif | |
endif |
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
/*global module:false*/ | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
autoprefixer: { | |
compile: { | |
expand: true, | |
cwd: 'css', | |
src: ['*.css', '!*.min.css'], | |
dest: 'css', |
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
topdoc: { | |
options: { | |
source: 'css', | |
destination: "demo", | |
template: "node_modules/topdoc-theme/", | |
templateData: { | |
"title": "Topcoat", | |
"subtitle": "CSS for clean and fast web apps", | |
"homeURL": "http://topcoat.io", | |
}, |