-
Create new files by pressing Ctrl/Cmd+alt+n and then typing the location to the file directly (note: won't actually create the file until you hit Ctrl/Cmd+S to save it)
-
Highlights hex code colours when the cursor is positioned on them.
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
/** | |
* Mobile first button abstraction | |
*/ | |
.btn { | |
background-color: #ccc; | |
border: 2px solid rgba(255, 255, 255, 0.8); | |
box-sizing: border-box; | |
color: #000; | |
display: block; |
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
pre { | |
background:#141414; /* hsl(0, 0%, 8%) */ | |
color:#FFF; | |
padding:5px; | |
white-space:pre; | |
-webkit-border-radius:5px; /* Saf3-4, iOS 1-3.2, Android ≤1.6 */ | |
border-radius:5px; /* Opera 10.5, IE9, Saf5, Chrome, FF4+, iOS 4, Android 2.1+ */ | |
} | |
pre ::selection { |
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
1: Replace | |
========================================== | |
<html>.* | |
.* | |
.* | |
.* | |
.* | |
.* | |
.* | |
<table id=".*" width |
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
Show hidden characters
{ | |
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme", | |
"font_face": "Ubuntu Mono", | |
"font_size": 14, | |
"highlight_line": true, | |
"ignored_packages": [ | |
// "Vintage" | |
], | |
"scroll_past_end": true, | |
"shift_tab_unindent": false, |
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
<snippet> | |
<content><![CDATA[/*===== $0 =====*/]]></content> | |
<tabTrigger>/*=</tabTrigger> | |
</snippet> |
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="container"> | |
<p>Normal speed. Hover to see the final effect</p> | |
<ul> | |
<li> | |
<span class="icon"></span> | |
<span class="label">item 1</span> | |
</li> | |
<li> | |
<span class="icon"></span> | |
<span class="label">item 2</span> |
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
num = '0' | |
fastest: `< ternary` slowest: `Regex` by 67%. | |
num = '1' | |
fastest: `Regex` slowest: `|| ternary` by 65% | |
num = '2' | |
fastest: `< ternary` slowest: `|| ternary` by 64% | |
num = '3' |
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
// Export this as a module for RequireJS | |
typeof define === "function" && define([], function() { return Konami; }); |
OlderNewer