-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Francis Ceril Challoy
authored and
Francis Ceril Challoy
committed
Jul 24, 2015
0 parents
commit 9ee702c
Showing
101 changed files
with
4,141 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
### OSX ### | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
config.codekit | ||
|
||
# Icon must end with two \r | ||
Icon | ||
|
||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear on external disk | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
|
||
### Sass ### | ||
.sass-cache |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# DevTips-Starter-Kit | ||
|
||
Use this as a simple structure for a simple start to a simple site. | ||
|
||
Visit [DevTipsStarterKit.com/](http://devtipsstarterkit.com) for more info. | ||
|
||
<img src="https://github.com/DevTips/DevTips-Starter-Kit/blob/master/assets/img/starter-kit-cover.jpg?raw=true" | ||
alt="Watch the video on youtube" /> | ||
|
||
*** | ||
|
||
### Other Versions | ||
|
||
- There is a Jekyll friendly version <a href="https://github.com/DevTips/DevTips-Starter-Kit/tree/Jekyll-Starter-Kit">here.</a> (based on v1) | ||
- DevTipster [Maikel José Rivero Dorta](https://github.com/mriverodorta) created a [gulp version](https://github.com/mriverodorta/DevTips-Starter-Kit/tree/Gulp-Starter-Kit), and a [Command Line Interface](https://github.com/mriverodorta/devtips-cli) for this project!! So cool :) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// http://fonts.googleapis.com/css?family=Fira+Sans | ||
@font-face { | ||
font-family: 'Fira Sans'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: local('Fira Sans'), local('FiraSans-Regular'), url(http://fonts.gstatic.com/s/firasans/v5/EjsrzDkQUQCDwsBtLpcVQZBw1xU1rKptJj_0jans920.woff2) format('woff2'); | ||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Fira Sans'; | ||
font-style: normal; | ||
font-weight: 700; | ||
src: local('Fira Sans Bold'), local('FiraSans-Bold'), url(http://fonts.gstatic.com/s/firasans/v5/DugPdSljmOTocZOR2CItOhampu5_7CjHW5spxoeN3Vs.woff2) format('woff2'); | ||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Fira Mono'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: local('Fira Mono'), local('FiraMono'), url(http://fonts.gstatic.com/s/firamono/v3/SlRWfq1zeqXiYWAN-lnG-pBw1xU1rKptJj_0jans920.woff2) format('woff2'); | ||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,221 @@ | ||
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ | ||
|
||
html { | ||
font-family: sans-serif; | ||
-ms-text-size-adjust: 100%; | ||
-webkit-text-size-adjust: 100%; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
} | ||
|
||
article, | ||
aside, | ||
details, | ||
figcaption, | ||
figure, | ||
footer, | ||
header, | ||
hgroup, | ||
main, | ||
menu, | ||
nav, | ||
section, | ||
summary { | ||
display: block; | ||
} | ||
|
||
audio, | ||
canvas, | ||
progress, | ||
video { | ||
display: inline-block; | ||
vertical-align: baseline; | ||
} | ||
|
||
audio:not([controls]) { | ||
display: none; | ||
height: 0; | ||
} | ||
|
||
[hidden], | ||
template { | ||
display: none; | ||
} | ||
|
||
a { | ||
background-color: transparent; | ||
} | ||
|
||
a:active, | ||
a:hover { | ||
outline: 0; | ||
} | ||
|
||
abbr[title] { | ||
border-bottom: 1px dotted; | ||
} | ||
|
||
b, | ||
strong { | ||
font-weight: bold; | ||
} | ||
|
||
dfn { | ||
font-style: italic; | ||
} | ||
|
||
h1 { | ||
font-size: 2em; | ||
margin: 0.67em 0; | ||
} | ||
|
||
mark { | ||
background: #ff0; | ||
color: #000; | ||
} | ||
|
||
small { | ||
font-size: 80%; | ||
} | ||
|
||
sub, | ||
sup { | ||
font-size: 75%; | ||
line-height: 0; | ||
position: relative; | ||
vertical-align: baseline; | ||
} | ||
|
||
sup { | ||
top: -0.5em; | ||
} | ||
|
||
sub { | ||
bottom: -0.25em; | ||
} | ||
|
||
img { | ||
border: 0; | ||
} | ||
|
||
svg:not(:root) { | ||
overflow: hidden; | ||
} | ||
|
||
figure { | ||
margin: 1em 40px; | ||
} | ||
|
||
hr { | ||
-moz-box-sizing: content-box; | ||
box-sizing: content-box; | ||
height: 0; | ||
} | ||
|
||
pre { | ||
overflow: auto; | ||
} | ||
|
||
code, | ||
kbd, | ||
pre, | ||
samp { | ||
font-family: monospace, monospace; | ||
font-size: 1em; | ||
} | ||
|
||
button, | ||
input, | ||
optgroup, | ||
select, | ||
textarea { | ||
color: inherit; | ||
font: inherit; | ||
margin: 0; | ||
} | ||
|
||
button { | ||
overflow: visible; | ||
} | ||
|
||
button, | ||
select { | ||
text-transform: none; | ||
} | ||
|
||
button, | ||
html input[type="button"], | ||
input[type="reset"], | ||
input[type="submit"] { | ||
-webkit-appearance: button; | ||
cursor: pointer; | ||
} | ||
|
||
button[disabled], | ||
html input[disabled] { | ||
cursor: default; | ||
} | ||
|
||
button::-moz-focus-inner, | ||
input::-moz-focus-inner { | ||
border: 0; | ||
padding: 0; | ||
} | ||
|
||
input { | ||
line-height: normal; | ||
} | ||
|
||
input[type="checkbox"], | ||
input[type="radio"] { | ||
box-sizing: border-box; | ||
padding: 0; | ||
} | ||
|
||
input[type="number"]::-webkit-inner-spin-button, | ||
input[type="number"]::-webkit-outer-spin-button { | ||
height: auto; | ||
} | ||
|
||
input[type="search"] { | ||
-webkit-appearance: textfield; | ||
-moz-box-sizing: content-box; | ||
-webkit-box-sizing: content-box; | ||
box-sizing: content-box; | ||
} | ||
|
||
input[type="search"]::-webkit-search-cancel-button, | ||
input[type="search"]::-webkit-search-decoration { | ||
-webkit-appearance: none; | ||
} | ||
|
||
fieldset { | ||
border: 1px solid #c0c0c0; | ||
margin: 0 2px; | ||
padding: 0.35em 0.625em 0.75em; | ||
} | ||
|
||
legend { | ||
border: 0; | ||
padding: 0; | ||
} | ||
|
||
textarea { | ||
overflow: auto; | ||
} | ||
|
||
optgroup { | ||
font-weight: bold; | ||
} | ||
|
||
table { | ||
border-collapse: collapse; | ||
border-spacing: 0; | ||
} | ||
|
||
td, | ||
th { | ||
padding: 0; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// | ||
// Some Useful color Vars via http://clrs.cc/ | ||
// | ||
// Cool | ||
$aqua: #7FDBFF | ||
$blue: #0074D9 | ||
$navy: #001F3F | ||
$teal: #39CCCC | ||
$green: #2ECC40 | ||
$olive: #3D9970 | ||
$lime: #01FF70 | ||
|
||
|
||
// Warm | ||
$yellow: #FFDC00 | ||
$orange: #FF851B | ||
$red: #FF4136 | ||
$fuchsia: #F012BE | ||
$purple: #B10DC9 | ||
$maroon: #85144B | ||
|
||
|
||
// Gray Scale | ||
$white: #fff | ||
$silver: #ddd | ||
$gray: #aaa | ||
$black: #111 | ||
|
||
|
||
// | ||
// Add whatever variables you would like made available to the whole app | ||
// |
Oops, something went wrong.