-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (37 loc) · 713 Bytes
/
style.css
File metadata and controls
44 lines (37 loc) · 713 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
* {
background-color: aqua;
margin: 0 auto;
}
#content {
background-color: cadetblue;
width: 800px;
border: 3px solid black;
}
header {
display: inline-block;
width: 100%;
height: 50px;
background-color: red;
}
header > nav > ul {
float: right;
}
header > nav > ul > li {
padding: 0 20px 0 20px;
text-decoration: none;
display: inline-block;
}
main {
display: inline-block;
width: 100%;
height: 500px;
background-color: rebeccapurple;
}
footer {
display: inline-block;
width: 100%;
height: auto;
background-color: yellow;
padding: 15px 0px 15px 10px;
box-sizing: border-box; /* subtract padding from the width */
}