-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (53 loc) · 778 Bytes
/
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
body{
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
color: #777;
background-color: #777;
width:960px;
font-size: 18px;
margin: 0 auto;
padding-top: 20px;
}
p{
text-align: center;
}
header,
#nav,
#section,
#aside,
footer{
background-color: #ebebeb;
margin: 10px;
}
header,
#nav,
footer{
height: 50px;
}
#aside{
width: 420px;
height: 300px;
}
#section{
width: 495px;
height: 300px;
float: left;
}
#aside,
#section{
display: inline-block;
}
#article{
color: #ebebeb;
width: 90%;
height: 200px;
background-color: #777;
margin: 0 auto;
}
#h1Block,
#pBlock{
color: #777;
background-color: #ebebeb;
width: 90%;
height: 50px;
margin-left: 20px;
}