-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (66 loc) · 1.08 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 {
background-color: black;
}
#particles-js {
width: 100%;
height: 100%;
position: fixed;
z-index: -10;
top: 0;
left: 0
}
#box {
width: 800px;
background-color: white;
margin: auto;
border-radius: 35px;
}
h1 {
font-family: 'Orbitron', Semi-Bold;
margin: auto;
text-align: center;
padding-top: 20px;
}
h3 {
font-family: 'Orbitron', sans-serif;
margin: auto;
text-align: center;
padding-top: 20px;
}
p {
width: 400px;
margin: auto;
padding-top: 20px;
padding-bottom: 20px;
font-family: 'Orbitron', sans-serif;
letter-spacing: 1px;
word-spacing: 5px;
}
#walk {
margin: auto;
width: 400px;
height: 612px;
background: url("robot_walk_sprite.png");
animation: play 1s steps(4) infinite;
border-radius: 35px;
}
@keyframes play {
from {
background-position: 0px;
}
to {
background-position: -1600px;
}
}
#shoot {
height: 400px;
border-radius: 35px;
}
svg {
width: 400px;
background-color: #cccccc;
border-radius: 35px;
}
.container3 {
padding-bottom: 30px;
}