-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (78 loc) · 1.37 KB
/
style.css
File metadata and controls
89 lines (78 loc) · 1.37 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
87
88
89
* {
box-sizing: border-box;
font-size: 18px;
text-align: center;
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
background-color: #777;
}
header {
margin: auto 180px;
background-color: #ebebeb;
color: #777;
padding: 40px;
}
#nav {
margin: 10px 180px;
background-color: #ebebeb;
color: #777;
padding: 40px;
}
.container {
text-align: center;
margin: 20px 180px;
position: relative;
}
#section {
float: left;
padding: 20px;
width: 55%;
margin-right: 1%;
color: #777;
background-color: #ebebeb;
text-align: center;
height: 300px;
}
.article {
background-color: #777;
color: #ebebeb;
margin: 10px 0px;
/* padding-top: 50px; */
/* position: absolute; */
/* width: 90%; */
height: 89%;
padding: 20px;
}
h1 {
background-color: #ebebeb;
color: #777;
padding: 20px;
/* height: 0%; */
margin-top: 30px;
/* position: absolute; */
}
p {
background-color: #ebebeb;
color: #777;
padding: 20px;
/* width: 30%; */
/* position: absolute; */
}
#aside {
float: left;
height: 300px;
width: 43%;
margin-left: 1%;
padding: 25px;
color: #777;
background-color: #ebebeb;
text-align: center;
}
.clear {
clear: both;
}
footer {
margin: auto 180px;
background-color: #ebebeb;
color: #777;
padding: 40px;
}