-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselectors.css
More file actions
57 lines (53 loc) · 839 Bytes
/
selectors.css
File metadata and controls
57 lines (53 loc) · 839 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
57
body {
background-color: white;
}
header {
border: goldenrod;
border-style: solid;
border-width: 1px;
}
ul {
list-style-type: none;
margin: 0px;
padding: 10px;
}
header > ul > li {
display: inline;
text-align: center;
}
.disabled {
background-color: grey;
color: black;
}
a {
background-color: rgba(255, 27, 255, 0.158);
color: black;
}
.active {
background-color: yellow;
}
.parent >div > div {
color: red;
}
.parent div:nth-child(3) {
color: blue;
}
.parent h4:nth-child(2) {
background-color: red;
}
.parent h4:nth-child(4) {
background-color: blue;
}
.grandparent > h4 {
border: red;
border-style: solid;
border-width: 1px;
border-radius: 2px;
}
.promo {
color:gold;
font-weight: bolder;
}
footer > span > input {
font-size: 25px;
}