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
/** | |
* | |
* Check out the example at http://sethlopez.me/article/understanding-accessibility-forms/. | |
* | |
* Copyright (c) 2015 Seth Lopez | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to | |
* deal in the Software without restriction, including without limitation the | |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
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
/server add <name> <team>.irc.slack.com/6667 -ssl -password=<password> -username=<username> -nicks=<username> -ssl_verify=off | |
/connect <name> |
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 bp($queries, $type: only screen) { | |
$query-count: length($queries); | |
$media-statement: "#{$type} and"; | |
@for $i from 1 through $query-count { | |
$query: nth($queries, $i); | |
$value: ''; | |
$key: ''; | |
@if length($query) == 1 or nth($query, 2) == up { | |
$key: min-width; | |
$value: if(map-has-key($bp, nth($query, 1)), px-em(map-get($bp, nth($query, 1))), px-em(nth($query, 1))); |
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
Show hidden characters
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete_commit_on_tab": true, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"command": "alignment", | |
"font_face": "Source Code Pro", | |
"font_size": 9, | |
"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
p { | |
color: red; | |
font-size: 2em; | |
} | |
p.bold { | |
font-weight: bold; | |
} | |
p.underline { |
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
// Breakpoints - Outputs em-based media queries | |
@mixin bp($name, $expression: up, $type: only screen, $em-context: 16) { | |
// List unitless pixel-equivalent sizes here | |
$sizes: ( | |
XS: 320, | |
S: 480, | |
M: 600, | |
L: 1000, | |
XL: 1200 | |
); |
NewerOlder