-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (76 loc) · 1.74 KB
/
style.css
File metadata and controls
86 lines (76 loc) · 1.74 KB
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
/* apply a natural box layout model to all elements */
/* line 2, ../scss/style.scss */
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box; }
/* line 6, ../scss/style.scss */
#wrapper {
width: 80%;
margin: 50px auto;
border: 1px solid black;
overflow: hidden; }
/* line 17, ../scss/style.scss */
.column {
height: 100px;
text-align: center;
line-height: 100px;
border: 1px solid blue; }
/* line 25, ../scss/style.scss */
.a {
background-color: orange; }
/* line 28, ../scss/style.scss */
.b {
background-color: purple; }
/* line 31, ../scss/style.scss */
.c {
background-color: yellow; }
/* line 34, ../scss/style.scss */
.d {
background-color: violet; }
/* line 44, ../scss/style.scss */
#grid1 {
clear: both;
margin: 2em 0;
overflow: hidden; }
/* line 46, ../scss/style.scss */
#grid1 .column {
width: 25%;
float: left;
padding: 0 1%; }
/* line 54, ../scss/style.scss */
#grid2 {
clear: both;
margin: 2em 0;
overflow: hidden; }
/* line 56, ../scss/style.scss */
#grid2 .column {
width: 23%;
margin: 0 1%;
float: left; }
/* line 64, ../scss/style.scss */
#grid3 {
clear: both;
margin: 2em 0;
overflow: hidden; }
/* line 66, ../scss/style.scss */
#grid3 .column {
width: 23.5%;
margin-right: 2%;
float: left; }
/* line 71, ../scss/style.scss */
#grid3 .column:last-of-type {
margin-right: 0; }
/* line 77, ../scss/style.scss */
#grid4 {
clear: both;
margin: 2em 0;
overflow: hidden; }
/* line 79, ../scss/style.scss */
#grid4 .column {
width: 6.5%;
margin-right: 2%;
float: left; }
/* line 84, ../scss/style.scss */
#grid4 .column:last-of-type {
margin-right: 0; }