-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (88 loc) · 1.33 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
body {
width: 960px;
height: 100%;
margin: 0;
padding: 0;
font-size: 18px;
font-family: "arial", "helvetica Neue", Helvetica, sans-serif;
}
.container {
text-align: center;
height: 100%;
margin: 0;
padding: 10px;
background-color: #777;
}
header {
width: 900px;
height: 40px;
background-color: #ebebeb;
margin: 0 10px 10px 10px;
padding: 10px;
vertical-align: middle;
}
nav {
width: 900px;
height: 40px;
background-color: #ebebeb;
margin: 10px;
padding: 10px;
}
.main {
margin: 10px 0;
background-color: green;
}
section {
width: 455px;
height: 280px;
background-color: #ebebeb;
margin: 10px;
padding: 20px 20px 0px 20px;
float: left;
}
article {
width: 90%;
height: 200px;
background-color: #777;
padding: 10px;
color: #ffffff;
margin: 0px auto;
position: relative;
bottom: -29px;
}
.headline, .paragraph{
width: 90%;
height: 50px;
background-color: #ebebeb;
margin: 10px auto;
padding: 10px;
color: #000000;
}
h1, h2 {
text-align: center;
margin: auto;
font-size: 26px
}
p {
text-align: center;
margin: auto;
}
aside {
width: 361px;
height: 260px;
background-color: #ebebeb;
margin: 10px;
padding:20px;
float: left;
/*padding: 20px;*/
}
footer {
width: 900px;
height: 40px;
background-color: #ebebeb;
margin: 10px;
padding: 10px;
clear: both;
position: relative;
top: 10px;
}