-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (63 loc) · 1.09 KB
/
style.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
* {
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
color: #777;
font-size: 18px;
text-align: center;
box-sizing: border-box;
}
body {
background: #777;
width: 960px;
margin: auto;
}
header, nav, footer {
padding: 30px;
background: #ebebeb;
margin-top: 15px;
}
.section {
background: #ebebeb;
width: 495px;
height: 275px;
float: left;
padding: 25px;
margin-top: 20px;
margin-bottom: 20px;
}
.aside {
background: #ebebeb;
float: right;
width: 440px;
height: 275px;
padding-top: 25px;
margin-top: 20px;
margin-bottom: 20px;
}
#article {
background: #777;
color: #ebebeb;
height: 185px;
width: 440px;
padding-top: 20px;
padding-bottom: 20px;
}
#headers {
background: #ebebeb;
height: 40px;
width: 385px;
position: relative;
left: 6%;
padding: 10px;
}
#paragraph {
background: #ebebeb;
height: 40px;
width: 385px;
position: relative;
left: 6%;
padding: 10px;
margin-top: 15px;
}
footer {
clear: both;
}