Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Driss Chelouati committed Apr 8, 2018
0 parents commit 4444dfc
Show file tree
Hide file tree
Showing 76 changed files with 18,069 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.DS_Store
bower_components
node_modules
npm-debug.log
_site
.sass-cache
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# bulma-gulp

A Bulma gulp starter
8 changes: 8 additions & 0 deletions bulma/bulma.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@charset "utf-8"
/*! bulma.io v0.6.2 | MIT License | github.com/jgthms/bulma */
@import "sass/utilities/_all"
@import "sass/base/_all"
@import "sass/elements/_all"
@import "sass/components/_all"
@import "sass/grid/_all"
@import "sass/layout/_all"
5 changes: 5 additions & 0 deletions bulma/sass/base/_all.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@charset "utf-8"

@import "minireset.sass"
@import "generic.sass"
@import "helpers.sass"
127 changes: 127 additions & 0 deletions bulma/sass/base/generic.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
$body-background-color: $white !default
$body-size: 16px !default
$body-rendering: optimizeLegibility !default
$body-family: $family-primary !default
$body-color: $text !default
$body-weight: $weight-normal !default
$body-line-height: 1.5 !default

$code-family: $family-code !default
$code-padding: 0.25em 0.5em 0.25em !default
$code-weight: normal !default
$code-size: 0.875em !default

$hr-background-color: $border !default
$hr-height: 1px !default
$hr-margin: 1.5rem 0 !default

$strong-color: $text-strong !default
$strong-weight: $weight-bold !default

html
background-color: $body-background-color
font-size: $body-size
-moz-osx-font-smoothing: grayscale
-webkit-font-smoothing: antialiased
min-width: 300px
overflow-x: hidden
overflow-y: scroll
text-rendering: $body-rendering
text-size-adjust: 100%

article,
aside,
figure,
footer,
header,
hgroup,
section
display: block

body,
button,
input,
select,
textarea
font-family: $body-family

code,
pre
-moz-osx-font-smoothing: auto
-webkit-font-smoothing: auto
font-family: $code-family

body
color: $body-color
font-size: 1rem
font-weight: $body-weight
line-height: $body-line-height

// Inline
a
color: $link
cursor: pointer
text-decoration: none
strong
color: currentColor
&:hover
color: $link-hover

code
background-color: $code-background
color: $code
font-size: $code-size
font-weight: $code-weight
padding: $code-padding

hr
background-color: $hr-background-color
border: none
display: block
height: $hr-height
margin: $hr-margin

img
height: auto
max-width: 100%

input[type="checkbox"],
input[type="radio"]
vertical-align: baseline

small
font-size: 0.875em

span
font-style: inherit
font-weight: inherit

strong
color: $strong-color
font-weight: $strong-weight

// Block
pre
+overflow-touch
background-color: $pre-background
color: $pre
font-size: 0.875em
overflow-x: auto
padding: 1.25rem 1.5rem
white-space: pre
word-wrap: normal
code
background-color: transparent
color: currentColor
font-size: 1em
padding: 0

table
td,
th
text-align: left
vertical-align: top
th
color: $text-strong
Loading

0 comments on commit 4444dfc

Please sign in to comment.