Skip to content

Instantly share code, notes, and snippets.

View shawn-dsz's full-sized avatar
🎯
Solving Problems beautifully

Shawn D'Souza shawn-dsz

🎯
Solving Problems beautifully
View GitHub Profile
@shawn-dsz
shawn-dsz / dabblet.css
Created November 5, 2013 06:06
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body {
background-color: #FFFFDD;
font-family: sans-serif;
}
#count-holder {
background-image: url('https://fbstatic-a.akamaihd.net/rsrc.php/v2/yH/r/fiGHywTEKgB.png');
@shawn-dsz
shawn-dsz / dabblet.css
Created November 7, 2013 07:40
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body {
background-color: #FFFFDD;
font-family: sans-serif;
}
#count-holder {
background-image: url('https://fbstatic-a.akamaihd.net/rsrc.php/v2/yH/r/fiGHywTEKgB.png');
@shawn-dsz
shawn-dsz / dabblet.css
Created November 7, 2013 07:40
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
body {
background-color: #FFFFDD;
font-family: sans-serif;
}
#count-holder {
background-image: url('https://fbstatic-a.akamaihd.net/rsrc.php/v2/yH/r/fiGHywTEKgB.png');
@shawn-dsz
shawn-dsz / dabblet.css
Created November 7, 2013 07:56
Untitled
span {
height:40px;
width:40px;
display:block;
position:relative;
}
.demoSpan1 {
border-radius:50px;
-webkit-border-radius:50px;
-moz-border-radius:50px;
@shawn-dsz
shawn-dsz / atomconfig
Created October 23, 2015 23:42
atom config
#
@shawn-dsz
shawn-dsz / git-gh-deploy
Created February 6, 2016 05:19
deploy a subfolder to github pages
#!/bin/sh
if [ -z "$1" ]
then
echo "Which folder do you want to deploy to GitHub Pages?"
exit 1
fi
git subtree push --prefix $1 origin gh-pages
@shawn-dsz
shawn-dsz / dabblet.css
Last active March 7, 2016 07:24
Untitled
body{
background-color: #ff0;
}
.r-card {
background-color: white;
padding: 10px;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif
}
.r-card--header {
@shawn-dsz
shawn-dsz / frontendDevlopmentBookmarks.md
Created March 9, 2016 02:34 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@shawn-dsz
shawn-dsz / dabblet.css
Last active March 11, 2016 09:39
Centering vertically & horizontally
body {
background-color: #F3F3F3;
}
#outer {
width: 200px;
height: 200px;
background-color: #333333;
display: flex;
align-items: center;
justify-content: center;
.box-container {
/*dissplay: flex;*/
border: 2px solid red;
display: flex;
flex-direction: row;
/*flex-wrap: wrap;*/
}
.box {