File tree Expand file tree Collapse file tree 1 file changed +74
-0
lines changed Expand file tree Collapse file tree 1 file changed +74
-0
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * Resets
3
+ */
4
+ * ,
5
+ * : before ,
6
+ * : after {
7
+ box-sizing : border-box;
8
+ }
9
+
10
+ .clearfix : after {
11
+ clear : both;
12
+ content : "" ;
13
+ display : table;
14
+ }
15
+
16
+ /**
17
+ * Global
18
+ */
19
+ body {
20
+ background : # 333 ;
21
+ color : # 666 ;
22
+ font-family : "Helvetica Neua" , Helvetica, Arial, sans-serif;
23
+ font-size : 16px ;
24
+ line-height : 1.5 ;
25
+ }
26
+
27
+ /**
28
+ * Grid
29
+ */
30
+ .container {
31
+ background : # fff ;
32
+ margin : 0 auto;
33
+ max-width : 100% ;
34
+ padding : 1.25em ;
35
+ }
36
+
37
+ .row {
38
+ margin : 0 0 1.25em ;
39
+ }
40
+
41
+ .row : last-child {
42
+ margin-bottom : 0 ;
43
+ }
44
+
45
+ div [class *= "col-" ] {
46
+ padding : .75em ;
47
+ }
48
+
49
+ @media all and (min-width : 600px ) {
50
+ .col-2-3 {
51
+ float : left;
52
+ width : 66.66% ;
53
+ }
54
+
55
+ .col-1-2 {
56
+ float : left;
57
+ width : 50% ;
58
+ }
59
+
60
+ .col-1-3 {
61
+ float : left;
62
+ width : 33.33% ;
63
+ }
64
+
65
+ .col-1-4 {
66
+ float : left;
67
+ width : 25% ;
68
+ }
69
+
70
+ .col-1-8 {
71
+ float : left;
72
+ width : 12.5% ;
73
+ }
74
+ }
You can’t perform that action at this time.
0 commit comments