Skip to content
This repository was archived by the owner on Apr 7, 2019. It is now read-only.

Commit c938507

Browse files
committed
adding scaffolding
1 parent 330a849 commit c938507

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

dist/css/pattern-scaffolding.css

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
/**
2+
* This stylesheet is for styles you want to include only when displaying demo
3+
* styles for grids, animations, color swatches, etc.
4+
* These styles will not be your production CSS.
5+
*/
6+
#sg-patterns {
7+
-webkit-box-sizing: border-box !important;
8+
box-sizing: border-box !important;
9+
max-width: 100%;
10+
padding: 0 0.5em;
11+
}
12+
13+
.demo-animate {
14+
background: #ddd;
15+
padding: 1em;
16+
margin-bottom: 1em;
17+
text-align: center;
18+
border-radius: 8px;
19+
cursor: pointer;
20+
}
21+
22+
.sg-colors {
23+
display: -webkit-box;
24+
display: -ms-flexbox;
25+
display: flex;
26+
-ms-flex-wrap: wrap;
27+
flex-wrap: wrap;
28+
list-style: none !important;
29+
padding: 0 !important;
30+
margin: 0 !important;
31+
}
32+
.sg-colors li {
33+
-webkit-box-flex: 1;
34+
-ms-flex: auto;
35+
flex: auto;
36+
padding: 0.3em;
37+
margin: 0 0.5em 0.5em 0;
38+
min-width: 5em;
39+
max-width: 14em;
40+
border: 1px solid #ddd;
41+
border-radius: 8px;
42+
}
43+
44+
.sg-swatch {
45+
display: block;
46+
height: 4em;
47+
margin-bottom: 0.3em;
48+
border-radius: 5px;
49+
}
50+
51+
.sg-label {
52+
font-size: 90%;
53+
line-height: 1;
54+
}

0 commit comments

Comments
 (0)