-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleca.css
More file actions
66 lines (55 loc) · 1003 Bytes
/
styleca.css
File metadata and controls
66 lines (55 loc) · 1003 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
58
59
60
61
62
63
64
65
66
* {
box-sizing: border-box;
}
.container {
border-radius: 20PX;
}
.box {
padding: 30px 0px;
text-align: center;
color: #f3f3f3;
}
.box-1, .box-2, .box-3 {
background: lavender;
border-radius: 50%;
color: black;
margin: 5PX;
}
.box-4 {
background: honeydew;
border-radius: 50%;
color: black;
}
.box-5, .box-6, .box-7, .box-8, .box-9, .box-10, .box-11, .box-12 {
background: grey;
border-radius: 50%;
margin: 5px;
}
.box-15, .box-16, .box-19 {
background: grey;
border-radius: 50%;
margin: 5px;
}
.box-13, .box-14, .box-18 {
background: grey;
border-radius: 50%;
margin: 5px;
}
.box-17, .box-18, .box-19 {
margin: 5px;
}
.box-17 {
background: grey;
border-bottom-left-radius: 45%;
border-bottom-right-radius: 45%;
border-top-left-radius: 45%;
border-top-right-radius: 45%;
margin: 5px;
}
.box-4, .box-8, .box-12, .box-16, .box-19 {
background: #ff9900;
}
.box-4:hover, .box-8:hover, .box-12:hover, .box-16:hover, .box-19:hover {
background: white;
color: black;
}