-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathframework.css
More file actions
76 lines (62 loc) · 803 Bytes
/
Copy pathframework.css
File metadata and controls
76 lines (62 loc) · 803 Bytes
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
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.col-1 {
float: left;
width: 8.333%;
}
.col-2 {
float: left;
width: 16.666%;
}
.col-3 {
float: left;
width: 25%;
}
.col-4 {
float: left;
width: 33.333%;
}
.col-5 {
float: left;
width: 41.666%;
}
.col-6 {
float: left;
width: 50%;
}
.col-7 {
float: left;
width: 58.322%;
}
.col-8 {
float: left;
width: 66.666%;
}
.col-9 {
float: left;
width: 75%;
}
.col-10 {
float: left;
width: 83.333%;
}
.col-11 {
float: left;
width: 91.666%;
}
.col-12 {
float: left;
width: 100%;
}
.row:before {
display: table;
content: "";
}
.row:after {
display: table;
content: "";
clear: both;
}