This file contains hidden or 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
/** | |
* Scoped Styles. Chromium 19 required. | |
*/ | |
hr { | |
border-top: 1px solid rgba(0,0,0,.1); | |
margin: 2rem 0; | |
} | |
/**************************************************/ |
This file contains hidden or 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
/* Super Simple Type Setup */ | |
* { | |
margin: 0; | |
} | |
html { | |
font-size: 24px; /* Whatever */ | |
} |
This file contains hidden or 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
/** | |
* Buttons and Icons | |
*/ | |
html { | |
font-size: 12px; | |
} | |
body { | |
font-size:1rem; |
This file contains hidden or 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
/* Font pairings */ | |
@font-face { | |
font-family: a; | |
src: url(data:font/opentype;base64,d09GRgABAAAAAHA0ABAAAAAA38QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAABwGAAAABwAAAAcXbTSpEdQT1MAAFcIAAAZDQAALQAj72QTR1NVQgAAVtwAAAAsAAAAMLj/uP5PUy8yAAAB4AAAAFgAAABgiU2RGWNtYXAAAARIAAABWwAAAZobgK0kY3Z0IAAABxQAAAAgAAAAIATOA3lmcGdtAAAFpAAAAQIAAAFzBlmcN2dseWYAAAjUAABK7AAAoqihm3xJaGVhZAAAAWwAAAAyAAAANvneyuNoaGVhAAABoAAAACAAAAAkB0oDnGhtdHgAAAI4AAACDgAAAzy4WzC7bG9jYQAABzQAAAGgAAABoOJ0Ca5tYXhwAAABwAAAACAAAAAgAuUC5W5hbWUAAFPAAAABuwAAA4cyjGCvcG9zdAAAVXwAAAFeAAABzdfZUmJwcmVwAAAGqAAAAGwAAACE5WiiC3jaY2BkYGAA4oSOlL3x/DZfGeSZXwBFGE6XOC+E0f9f/ndjvsVcBuRyMDCBRAFvmA2IAAB42mNgZGBgbvl3hYGBRfD/y//PmW8xAEVQwHkAr3oH6wABAAAAzwBkAAUAUwAEAAEAAAAAAAoAAAIAAiwAAgABeNpjYGZSZZzAwMrAwLSHqYuBgaEHQjPeZTBi+AUU5WZmAYoyMjAtYGB4H8Cg4MUABQFBIW4MDgwKikpM7/6zMTAwtzDqKDAwzAfJMQFNA1IKDEwA2fQOdHjabZLfS9NRGMaf9z0RBDHoRkj6YWwoDDbHV0Zf55JNa7rayK02wrW5kUigUBcV3fUHJHoVQZCBBep1FEHYVd1E3gt1WRcGFelFA4P1nOMKEwefPee797zn+57nmczgFPiRPL8+UQ9iTN6grEtI6CVkTAFn9AXS+IayxJEj3bKCpNYwhu8IymM |
This file contains hidden or 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
/* Class Names */ | |
.block {} | |
.block_elem {} | |
.block.mod {} | |
/*/ | |
* *************** | |
/*/ |
This file contains hidden or 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
/* Weird thumbnail caption thing */ | |
p { | |
color:white; | |
} | |
article { | |
position:relative; | |
} |
This file contains hidden or 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
<?php | |
include './../lib/mustache/Mustache.php'; | |
include './../lib/mustache/MustacheLoader.php'; | |
$template = <<<HTML | |
<body> | |
<header>{{header}}</header> | |
{{> partials/footer}} | |
</body> | |
HTML; |
This file contains hidden or 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
/** | |
* Lazy Responsive Design | |
*/ | |
html{ | |
background: #aa0000; | |
} | |
body { | |
-webkit-transform: scale(.5); |
This file contains hidden or 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
* { | |
margin: 0; | |
padding: 0; | |
} | |
html { | |
font-size: 12px; | |
font-family: sans-serif; | |
} |
This file contains hidden or 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
* { | |
margin: 0; | |
} | |
html { | |
/*background: url(http://griddle.it/936-2-935?horizontal=12&num=false) 0 0;*/ | |
font-family: serif; | |
font-size: 12px; | |
} | |
body { | |
font-size: 1.5rem; |