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
// ---- | |
// Sass (v3.5.6) | |
// Compass (vundefined) | |
// ---- | |
// ! Work in progress, do not import | |
// * SCSS because fuck sASS | |
// ! Need to have colors in map for gradient function testing | |
$states: ( |
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
{ | |
"editor.tabSize": 2, | |
"editor.lineHeight": 35, | |
"editor.fontSize": 14, | |
"editor.fontFamily": "Operator Mono Lig", | |
"editor.fontWeight": "100", | |
"editor.fontLigatures": true, | |
"workbench.activityBar.visible": false, | |
"workbench.colorTheme": "Snazzy Operator", | |
"workbench.statusBar.visible": true, |
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
<section class="container"> | |
<h1 class="section-title">Releases</h1> | |
<div class="test-col">Test! #1</div> | |
<div class="test-col">Test! #2</div> | |
<div class="test-col">Test! #3</div> | |
<div class="test-col">Test! #4</div> | |
<div class="test-col">Test! #5</div> | |
<div class="test-col">Test! #6</div> | |
<div class="test-col">Test! #7</div> | |
<div class="test-col">Test! #8</div> |
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
@mixin position( | |
$position: absolute, | |
$top: null, | |
$right: null, | |
$bottom: null, | |
$left: null | |
) { | |
position: $position; | |
top: $top; | |
right: $right; |
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
// | |
// Use following jQuery: | |
// | |
// <script type="text/javascript"> | |
// $(document).ready( function(){ | |
// $(".switch").click( function() { | |
// $(".switch").toggleClass("on"); | |
// }); | |
// }); | |
// </script> |
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
////////////////////////////////////////////////////// | |
// All colors courtesy of http://flatuicolors.com/ // | |
// Colors can be seen at that url too :) // | |
// Order goes: Light color first, darker second // | |
////////////////////////////////////////////////////// | |
// Green-Blue | |
$turquoise: #1abc9c rgba(26, 188, 156,1.0); | |
$green-sea: #16a085 rgba(22, 160, 133,1.0); | |
// Green |
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
{ | |
"auto_match_enabled": true, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme", | |
"enable_tab_scrolling": true, | |
"font_face": "Inconsolata", | |
"font_size": 16, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, |
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
{ | |
"installed_packages": | |
[ | |
"AdvancedNewFile", | |
"BracketHighlighter", | |
"CSScomb", | |
"CSSLint", | |
"DashDoc", | |
"DocBlockr", | |
"EJS", |
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
// -------------------------------------------------------- | |
// arrows | |
// -------------------------------------------------------- | |
// $direction: top, left, right, bottom, top-left, top-right, bottom-left, bottom-right | |
// $color: hex, rgb or rbga | |
// $size: px or em | |
// @example | |
// .element{ | |
// @include arrow(top, #000, 50px); | |
// } |
NewerOlder