-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask5.css
70 lines (59 loc) · 1011 Bytes
/
task5.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
body {
background-color: rgb(226, 216, 83);
}
#nav a {
position: absolute;
left: 20px;
transition: 0.3s;
padding: 4px;
width: 120px;
text-decoration: none;
font-size: 18px;
background-color: white;
color: blue;
border-right: 18px solid black;
}
#nav a:hover {
width: 1px;
white-space: nowrap;
background-color: rgb(0, 0, 0);
border-right: 137px solid black;
color: white;
}
#nav a.active {
color: purple;
}
#nav a.active:hover {
color: white;
}
#hmpg {
top: 40px;
}
#mus {
top: 77px;
}
#mytwn {
top: 114px;
}
#lnks {
top: 151px;
}
#content h1 {
font-family: Arial, Helvetica, sans-serif;
margin-left: 200px;
color: purple;
}
#content p {
font-family: Arial, Helvetica, sans-serif;
margin-left: 200px;
color: purple;
}
hr {
border: none;
border-top: 1px dotted purple;
color: #fff;
/* background-color: #fff; */
height: 1px;
margin-left: 200px;
width: 350px;
}