-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid.css
103 lines (87 loc) · 1.49 KB
/
grid.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
.grid {
width: 100%;
}
.grid.box {
width: 1200px;
margin: 0 auto;
}
.grid .row {
position: relative;
clear: both;
}
.grid .row .column {
float: left;
margin: 0;
padding: 0 !important;
min-height: 1px;
}
.grid .row .column,
.grid .row .column.w1 {
width: 8.3333%;
}
.grid .row .column.w2 {
width: 16.6667%;
}
.grid .row .column.w3 {
width: 25%;
}
.grid .row .column.w4 {
width: 33.3333%;
}
.grid .row .column.w5 {
width: 41.6667%;
}
.grid .row .column.w6 {
width: 50%;
}
.grid .row .column.w7 {
width: 58.3333%;
}
.grid .row .column.w8 {
width: 66.6667%;
}
.grid .row .column.w9 {
width: 75%;
}
.grid .row .column.w10 {
width: 83.3333%;
}
.grid .row .column.w11 {
width: 91.6667%;
}
.grid .row .column.w12 {
width: 100%;
}
.grid .row .column.move1 {
margin-left: 8.3333%;
}
.grid .row .column.move2 {
margin-left: 16.6667%;
}
.grid .row .column.move3 {
margin-left: 25%;
}
.grid .row .column.move4 {
margin-left: 33.3333%;
}
.grid .row .column.move5 {
margin-left: 41.6667%;
}
.grid .row .column.move6 {
margin-left: 50%;
}
.grid .row .column.move7 {
margin-left: 58.3333%;
}
.grid .row .column.move8 {
margin-left: 66.6667%;
}
.grid .row .column.move9 {
margin-left: 75%;
}
.grid .row .column.move10 {
margin-left: 83.3333%;
}
.grid .row .column.move11 {
margin-left: 91.6667%;
}