-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (84 loc) · 1.55 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (84 loc) · 1.55 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
*{
margin: 0;
padding: 0;
}
#container{
background: #aaa;
text-align: center;
justify-items: center;
position: fixed;
height: 100vh;
width: 100%;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
canvas{
cursor:grabbing;
background: rgb(242, 255, 240);
margin: 60px auto;
border-radius: 20px;
box-shadow: 1px 1px 10px 10px black;
}
#title{
color: rgb(41, 41, 41);
margin-top: 50px;
}
#boxPlay{
border: 1px solid rgb(0, 0, 0);
top: 200px;
height: 200px;
border-radius: 9px;
background: #aaa;
margin: 0 auto;
width: 400px;
position:relative;
}
#no{
background: rgba(0, 0, 0, 0.501);
position: fixed;
height: 100%;
text-align: center;
width: 100%;
/* display:none; */
top: 0px;
animation: myAni .6s ease;
}
#play{
height: 40px;
width: 80px;
text-align: center;
margin: 20px auto;
z-index: 10;
border: none;
}
#play:hover{
cursor: pointer;
background: #bbb;
}
#heart{
position: fixed;
z-index: 0;
line-height: 30px;
background: rgba(0,0,0,0);
height: 30px;
width: 60px;
border: none;
}
#heart{
font-size: 20px;
}
@keyframes myAni {
0%{
top: -1000px;
}
60%{
top: 100px;
}
100%{
top: 0px;
}
}
@media screen and (max-width:400px) {
#boxPlay {
width: 100%;
}
}