-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6.css
80 lines (70 loc) · 1.36 KB
/
6.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
body {
background-color: #F5D6C6;
margin: auto;
margin-top: 30px;
width: 60%;
padding: 10px;
text-align: center;
}
h2 {
font-size: 40px;
}
#container {
margin-top: 60px;
text-align: center;
width: 100%;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
border-radius: 7px;
touch-action: none;
}
.item {
border-radius: 50%;
touch-action: none;
user-select: none;
position: relative;
}
.one {
width: 60px;
height: 60px;
background-color: rgb(245, 230, 99);
border: 10px solid rgba(136, 136, 136, .5);
left: 40px;
}
.two {
width: 200px;
height: 200px;
background-color: rgba(196, 241, 190, 1);
border: 10px solid rgba(136, 136, 136, .5);
left: -50px;
}
.three {
width: 60px;
height: 60px;
background-color: rgb(0, 255, 231);
border: 10px solid rgba(136, 136, 136, .5);
left: 10px;
}
.four {
width: 200px;
height: 200px;
background-color: rgb(233, 210, 244);
border: 10px solid rgba(136, 136, 136, .5);
left: -90px;
}
.five {
width: 200px;
height: 200px;
background-color: rgb(69, 3, 75);
border: 10px solid rgba(136, 136, 136, .5);
left: -40px;
}
.div1 {
visibility: hidden;
}
#answer.text {
visibility: hidden;
}