-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathlearn-css-selectors.css
More file actions
56 lines (46 loc) · 869 Bytes
/
Copy pathlearn-css-selectors.css
File metadata and controls
56 lines (46 loc) · 869 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
45
46
47
48
49
50
51
52
53
54
55
56
h1 {
color: rgb(108, 133, 92);
font-size: 60px;
font-family: fantasy;
}
.title-medium {
color: rgb(100, 216, 236);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 30px;
text-decoration: underline;
}
#boss-selector {
background-color: aqua;
color: rgb(148, 185, 46);
font-size: 25px;
}
.look-here {
background-color: rgb(212, 240, 241);
font-family: sans-serif;
}
.look-here p {
color: red;
}
.look-here p:last-child {
color: blue;
}
.odd-even {
font-size: 22px;
font-family: sans-serif;
text-align: center;
}
.odd-even {
background-color: rgb(245, 219, 253);
}
.odd-even p:nth-child(odd) {
color: rgb(13, 34, 94);
}
.odd-even p:nth-child(even) {
color: rgb(202, 55, 29);
}
footer a {
text-decoration: none;
}
a:hover {
background-color: yellow;
}