Skip to content

Instantly share code, notes, and snippets.

View TimeBandit's full-sized avatar
💭
Waiting to breath

Imrān Nazir TimeBandit

💭
Waiting to breath
View GitHub Profile
@TimeBandit
TimeBandit / package.json
Created September 22, 2018 09:21
auto starting dev server & babel parsing #dev #package #workflow
{
"name": "indecision-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"live-server public\" \"babel src/app.js --out-file=public/scripts/app.js --presets=env,react --watch\""
},
"keywords": [],
@TimeBandit
TimeBandit / responsive-images.css
Last active September 19, 2018 18:25
Responsive Images #css #style
/* To make them 'retina' set width, height to half
original file size
*/
img {
max-width: 100%;
display: block;
height: auto;
}
@TimeBandit
TimeBandit / index.pug
Last active September 19, 2018 18:15
Focus selector #html #css #styling
/* The tab index is needed tomake an element */
/* navigable from the keyboard */
div.container
div.output(tabindex="0")