-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (46 loc) · 720 Bytes
/
styles.css
File metadata and controls
54 lines (46 loc) · 720 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
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
margin: 10px;
}
h2, p {
margin-top: 0;
}
hr {
width: 100%;
height: 1px;
background: #CCC;
border: 0;
margin: 20px 0 40px;
float: left;
}
.deviation {
width: 100%;
max-width: 800px;
background: #EEE;
border-radius: 5px;
box-shadow: 1px 1px 3px #CCC;
margin-bottom: 40px;
padding: 20px;
overflow: hidden;
}
.col {
width: 49%;
float: left;
}
.col-p {
margin-right: 1%;
}
.col-s {
margin-left: 1%;
}
.deviation_image {
width: 100%;
box-shadow: 1px 1px 3px #999;
margin-bottom: 10px;
}