-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (76 loc) · 1.45 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
79
80
81
82
83
84
85
86
.dino {
width: 60px;
height: 60px;
background-image: url(img/dino.png);
position: absolute;
bottom: 0;
}
body {
background-color: #fafafa;
width: 80%;
height: 80%;
margin: 0 auto;
padding-top: 200px;
}
.espaco {
height: 100px;
}
.pontos p {
text-align: right;
color:grey;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
.titulo h1{
text-align: center;
color: #666666;
font-family: Arial, Helvetica, sans-serif;
font-size: 40px;
}
.titulo h3 {
text-align: center;
color:grey;
font-family: Arial, Helvetica, sans-serif;
}
.titulo p {
text-align: center;
color:grey;
font-family: Arial, Helvetica, sans-serif;
}
.cactus {
width: 60px;
height: 60px;
background-image: url(img/cactus.png);
position: absolute;
bottom: 0;
}
.fim-de-jogo{
text-align: center;
color: #666666;
margin-top: 80px;
font-family: Arial, Helvetica, sans-serif;
font-size: 40px;
}
.total-pontos {
color:grey;
text-align: center;
color: #666666;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
@keyframes slideright{
from {
background-position: 70000%;
}
to {
background-position: 0;
}
}
.background{
position: relative;
background-image: url(img/background.png);
background-repeat: repeat-x;
animation: slideright 2000s infinite linear;
width: 100%;
height: 200px;
}