-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (75 loc) · 1.73 KB
/
style.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
body{
font-family: Tahoma, sans-serif;
}
h1{
text-align: center;
}
.menu{
padding: 50px 500px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
background: #35dd78;
}
.bar{
width: 250px;
margin-bottom: 40px;
}
.nameTextField{
border-radius: 5px;
font-size: 16px;
margin: 0 50px;
width: 150px;
margin: auto;
}
.levelLbl{
font-size: 25px;
width: 150px;
margin: auto;
}
.btns{
margin: auto;
}
.item{
position: absolute;
background-image: url('circle.png');
transform: skewX(-20deg);
border-radius: 50%;
width: 50px;
height: 50px;
top: 40%;
left: -10%;
}
canvas{
border: solid;
border-color: blue;
}
.container{
position: fixed;
top: 50%;
left: 50%;
width: 100%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.puncher {
position: relative;
width: 20px;
height: 50px;
background-color: red;
right: -50%
}
@-webkit-keyframes animatedConveyor {
from { background-position: 0 0; }
to { background-position: 4000% 0; }
}
#animate-area {
width: 100%;
height: 100%;
border:1px solid red;
background-image: url(surface1.jpg);
background-position: 0px 0px;
background-repeat: repeat-x;
animation: animatedConveyor 53s linear infinite;
}