This website works better with JavaScript.
Help
Sign In
tentakelfabrik
/
crispy-css
Watch
1
Star
0
Fork
0
Code
Issues
1
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
adding default elements
master
HerrHase
6 years ago
parent
09a4a62644
commit
618e47013b
6 changed files
with
75 additions
and
8 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+32
-1
demo/index.html
+25
-3
dest/css/crispy.css
+1
-1
dest/css/crispy.min.css
+15
-2
src/scss/_base.scss
+1
-0
src/scss/crispy.scss
+1
-1
src/scss/helpers/_background-color.scss
+ 32
- 1
demo/index.html
View File
@ -23,6 +23,15 @@
<
/
style
>
<
/
style
>
<
/
head
>
<
/
head
>
<
body
>
<
body
>
<
header
class
=
"header"
>
<
div
class
=
"container"
>
<
div
class
=
"grid"
>
<
div
class
=
"col-12"
>
Crispy Boilerplate - pure CSS
<
/
div
>
<
/
div
>
<
/
div
>
<
/
header
>
<
div
class
=
"container"
>
<
div
class
=
"container"
>
<
div
class
=
"grid"
>
<
div
class
=
"grid"
>
<
div
class
=
"col-2"
>
<
div
class
=
"col-2"
>
@ -31,7 +40,9 @@
<
/
nav
>
<
/
nav
>
<
/
div
>
<
/
div
>
<
div
class
=
"col-10"
>
<
div
class
=
"col-10"
>
<
h2
>
Heading
<
/
h2
>
<
h1
>
<
/
h1
>
<
h2
id
=
"typography"
>
Typography
<
/
h2
>
<
div
class
=
"panel"
>
<
div
class
=
"panel"
>
<
h1
>
Heading h1
<
/
h1
>
<
h1
>
Heading h1
<
/
h1
>
<
h2
>
Heading h1
<
/
h2
>
<
h2
>
Heading h1
<
/
h2
>
@ -40,6 +51,26 @@
<
h5
>
Heading h1
<
/
h5
>
<
h5
>
Heading h1
<
/
h5
>
<
h6
>
Heading h1
<
/
h6
>
<
h6
>
Heading h1
<
/
h6
>
<
/
div
>
<
/
div
>
<
div
class
=
"panel"
>
<
strong
>
Strong
<
/
strong
>
<
span
class
=
"background-warning"
>
<
strong
>
<
/
span
>
<
code
>
<
/
code
>
<
blockquote
>
Hoodie kickstarter four loko, pinterest hashtag chambray glossier. Pug before they sold out etsy listicle. Deep v bespoke tacos polaroid, squid flexitarian crucifix messenger bag.
<
/
blockquote
>
<
/
div
>
<
div
class
=
"panel"
>
<
ul
>
<
li
>
item 1
<
/
li
>
<
li
>
item 2
<
/
li
>
<
/
ul
>
<
ol
>
<
li
>
item 1
<
/
li
>
<
li
>
item 2
<
/
li
>
<
/
ol
>
<
dl
>
<
dt
>
defined title 1
<
/
dt
>
<
dd
>
defined item 1
<
/
dd
>
<
/
dl
>
<
/
div
>
<
h2
id
=
"buttons"
class
=
"margin-top-1x"
>
Buttons
<
/
h2
>
<
h2
id
=
"buttons"
class
=
"margin-top-1x"
>
Buttons
<
/
h2
>
<
div
class
=
"panel"
>
<
div
class
=
"panel"
>
+ 25
- 3
dest/css/crispy.css
File diff suppressed because it is too large
View File
+ 1
- 1
dest/css/crispy.min.css
File diff suppressed because it is too large
View File
+ 15
- 2
src/scss/_base.scss
View File
@ -91,11 +91,24 @@ blockquote {
/
/
lists
/
/
lists
ul
,
ol
,
dl
{
ul
,
ol
,
dl
{
margin
:
0
0
$
crispy__margin
0
;
padding
:
0
;
margin
:
pxToEm
(
10px
)
0
$
crispy__margin
pxToEm
(
10px
)
;
}
ol
{
list-style
:
decimal
inside
;
}
}
ul
{
ul
{
list-style-position
:
outside
;
list-style
:
disc
inside
;
}
dd
,
dt
{
margin
:
0
;
}
dt
{
font-weight
:
bold
;
}
}
/
/
divider
/
/
divider
+ 1
- 0
src/scss/crispy.scss
View File
@ -13,6 +13,7 @@
'
components/table
'
;
'
components/table
'
;
@include
crispy__margin
()
;
@include
crispy__margin
()
;
@include
crispy__background-color
()
;
@include
crispy__button
()
;
@include
crispy__button
()
;
@include
crispy__heading
()
;
@include
crispy__heading
()
;
+ 1
- 1
src/scss/helpers/_background-color.scss
View File
@ -11,7 +11,7 @@
$crispy__background-colors
:
$crispy__colors
!default
;
$crispy__background-colors
:
$crispy__colors
!default
;
@mixin
crispy__background-color
()
{
@mixin
crispy__background-color
()
{
@each
$
name
,
$
color
in
$
crispy__background-color
{
@each
$
name
,
$
color
in
$
crispy__background-color
s
{
.
background-
#{
$name
}
{
.
background-
#{
$name
}
{
background-color
:
$
color
;
background-color
:
$
color
;
}
}
Write
Preview
Loading…
Cancel
Save