-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
72 lines (67 loc) · 1.28 KB
/
index.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
/* Note to students: Some properties are given to you to fill out,
others you can modify as they stand, and if you have time,
there are definitely some properties you should add!*/
html {
height: 100%;
}
body {
background-image: url(light.jpg);
width: 100%;
height: 100%;
}
header {
background-color: #8257cb;
padding: 20px;
border: 10px solid #000000;
margin-bottom: 25px;
text-align: center;
font-family: Helvetica
font-size: 26px;
display: block;
}
nav {
float: left;
width: 100%;
}
nav ul {
background-color: #8257cb;
margin: 0;
padding: 0;
width: 10%;
height: 100%;
position: fixed;
float: left;
border-bottom: ;
list-style-type: none;
z-index: 1;
}
nav li {
float: left;
}
nav li a {
display: block;
height: 25px;
padding: 12px 18px 8px 18px;
vertical-align: middle;
}
a {
color: ;
}
section {
text-align: center;
background-color: gray;
opacity: .9;
width: 100%;
display: inline-block;
float: inherit;
}
footer {
width: 790px;
background-color:;
color:;
clear: both;
display: block;
}
img {
width: 600px;
}