-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (96 loc) · 1.39 KB
/
Copy pathstyle.css
File metadata and controls
118 lines (96 loc) · 1.39 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#wrapper {
width: 980px;
margin: 0 auto;
margin-top: 100px;
}
h1 {
color: red;
text-align: center;
}
main {
width: 260px;
background: grey;
margin: 0 auto;
}
header {
height: 200px;
width: 100%;
}
header #choice {
}
#solution ul {
border: 1px solid black;
padding: 0 0 0 0;
margin: 0 0 0 0;
}
li {
display: inline-block;
border: 1px solid black;
width: 22%;
margin: 0 0 0 0;
padding: 0 0 0 0;
}
ul {
padding: 0 0 0 0;
margin: 0 0 0 0;
}
#choice ul {
width: 14%;
margin: 0 auto;
}
#choice li {
width: 50px;
height: 50px;
}
#choice ul:first-child li:first-child {
background:#f22613 ;
}
#choice ul:first-child li:nth-child(2) {
background: #f9bf3b;
}
#choice ul:first-child li:nth-child(3) {
background:#2ecc71 ;
}
#choice ul:nth-child(2) li:first-child {
background: #4b77bE;
}
#choice ul:nth-child(2) li:nth-child(2) {
background: #F9690e;
}
#choice ul:nth-child(2) li:nth-child(3) {
background: #eee;
}
#choice ul:last-child li:nth-child(1) {
background: #8e44ad;
}
#choice ul:last-child li:nth-child(2) {
background: #db0a5b;
}
li {
width: 50px;
height: 50px;
}
.orange {
background: orange;
}
.blue {
background: blue;
}
.green {
background: green;
}
.yellow {
background: yellow;
}
.fuchsia {
background: #db0a5b;
}
.red {
background: red;
}
.white {
background: #eee;
}
.violet {
background: #8e44ad;
}