body itali bol
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
.token.language-regex { | |
color: #4d4d4d; | |
} | |
.token.quantifier { | |
color: #58f; | |
} | |
.token.escape, | |
.token.special-escape { |
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
#!/bin/sh | |
# Formatting helpers | |
RED=$'\e[31m' | |
GREEN=$'\e[32m' | |
NORMAL=$'\e[0m' | |
redEcho() { echo "$RED$1$NORMAL"; } | |
greenEcho() { echo "$GREEN$1$NORMAL"; } |
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
/** | |
* 140Journal | |
*/ | |
textarea.entry { | |
width: 50%; | |
height: 100px; | |
font-size: 2em; | |
font-family: Raleway; | |
resize: none; |
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
(function() { | |
var endDate = "August 18, 2017 09:30:00 GMT+0530"; | |
function zeroPad(number) { | |
return ("0" + number).slice(-2); | |
} | |
function getRemainingTime(deadline) { | |
var t = Date.parse(deadline) - Date.parse(new Date()); | |
var seconds = Math.floor((t / 1000) % 60); |
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
* { | |
box-sizing: border-box; | |
margin: 0; | |
padding: 0; | |
} | |
body { | |
background: url(/images/bg.jpg) center fixed; | |
background-size: cover; | |
color: #222222; |
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
[ | |
{ | |
"quote": "Life isn’t about getting and having, it’s about giving and being.", | |
"author": "Kevin Kruse" | |
}, | |
{ | |
"quote": "Whatever the mind of man can conceive and believe, it can achieve.", | |
"author": "Napoleon Hill" | |
}, | |
{ |
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
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 14, | |
// font family with optional fallbacks | |
fontFamily: 'Hack, Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
cursorColor: '#bbb', |