-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex5.css
62 lines (50 loc) · 756 Bytes
/
ex5.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
.emptydiv {
background-color: gold;
height="20px";
display: block;
width: 1.em;
height: 15px;
}
.header {
background-color: grey;
font-family: Arial, Helvetica, sans-serif;
}
body {
background-color: rgb(192, 158, 158);
}
h1:hover {
background-color: gold;
color: silver;
}
section h1 {
font-family: cursive;
text-align: center;
font-size: xx-large;
}
section h1:hover {
color: green
}
h2:hover {
color: red;
font-weight: bolder;
}
#footer {
background-color: silver;
}
#footer:hover {
font-weight: bolder;
font-size: xx-large;
}
a {
font-weight: bold;
color: darkblue
}
a:hover {
color: red
}
a:active {
color: green
}
a:visited {
color: yellow;
}