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
var check = document.querySelectorAll('[type="checkbox"]'); | |
var i = check.length; | |
while(i--){ | |
if(check[i].disabled == true) continue; | |
check[i].checked = true; | |
} |
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
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In --> | |
<svg version="1.1" | |
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/" | |
x="0px" y="0px" width="128px" height="128px" viewBox="0 0 128 128" enable-background="new 0 0 128 128" xml:space="preserve"> | |
<defs> | |
</defs> | |
<g> | |
<image overflow="visible" opacity="0.3" width="128" height="128" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAACXBIWXMAAAsSAAALEgHS3X78AAAA | |
GXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAD8lJREFUeNrsXYty2zgMBGnZzuN6 |
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 STYLES | |
---------- */ | |
/* Site-Wide Page Background */ | |
.sheet-site { | |
background: #fafafa ; | |
} |
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
/*! | |
* | |
* NUSA Project | |
* Initially created by Coty Beasley | |
* Email: [email protected] | |
* Version: 3.02 | |
* Random Chinese Proverb: "Reading ten thousand books is not as useful as traveling ten thousand miles." | |
* | |
* ------------------------------------------- | |
* |
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
# Exports | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxCxDxBxegedabagacad | |
export PS1="\e[1;34;40m[\u@\h \W]\$ \e[m " | |
# Aliases | |
alias nserver="node ~/node/server.js" | |
alias ll="ls -al" | |
alias colors="python colors -t" | |
alias h5bp="git clone https://github.com/h5bp/html5-boilerplate.git" |
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
/* Line 553 of event.css, fixes spacing issue with your glyphicon being smashing up against the text */ | |
.hero.event header h2 .location a:before { | |
margin-right: 0.25em; | |
} |
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
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144x144-precomposed.png"> | |
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114-precomposed.png"> | |
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x72-precomposed.png"> | |
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-57x57-precomposed.png"> | |
<link rel="shortcut icon" sizes="196x196" href="touch-icon-196x196.png"> | |
<link rel="shortcut icon" href="apple-touch-icon.png”> | |
<!-- Tile icon for Win8 (144x144 + tile color) --> | |
<meta name="msapplication-TileImage" content="apple-touch-icon-144x144-precomposed.png"> | |
<meta name="msapplication-TileColor" content="#1f81c1"> |
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
table { | |
border-spacing: 0; | |
border-collapse: collapse; | |
} | |
td, | |
th { | |
padding: 0; | |
} | |
table { | |
max-width: 100%; |
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
[ | |
'{{repeat(0, 100)}}', | |
{ | |
picture: 'http://placekitten.com/' + '{{numeric(200,600)}}' + '/' + '{{numeric(200,600)}}', | |
age: '{{numeric(1, 10)}}', | |
name: '{{firstName()}}', | |
gender: '{{gender()}}' | |
} | |
] |
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 use sass and only I added image dist path to assetsDirs array. | |
usemin image css path works like so: | |
usemin: { | |
options: { | |
assetsDirs: ['<%= yeoman.dist %>', '<%= yeoman.dist %>/images'] | |
}, | |
html: ['<%= yeoman.dist %>/{,*/}*.html'], | |
css: ['<%= yeoman.dist %>/styles/{,*/}*.css'] | |
}, |
OlderNewer