-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.css
90 lines (75 loc) · 1.4 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
87
88
89
90
.b {
width: 100%;
height: 100vh;
background-image: url("Images/BG.png");
background-size: cover;
overflow-x: hidden;
position: absolute;
background-repeat: repeat-x;
}
.body {
margin: 0px;
}
.ground {
position: absolute;
width: 100%;
height: 10vh;
margin-top: 560px;
}
.barrier {
position: absolute;
height: 100px;
margin-top: 460px;
}
.santa {
position: absolute;
height: 256px;
margin-top: 332px;
}
.score {
position: absolute;
font-family: "Times New Roman";
font-size: 90px;
color: rgb(0, 250, 109);
font-weight: bold;
margin-top: 20px;
margin-left: 60px;
}
.gover {
position: absolute;
height: 100vh;
width: 100%;
background-color: blue;
font-family: "Times New Roman";
font-size: 100px;
font-weight: bold;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
opacity: 0.9;
visibility: hidden;
}
.btn {
width: 500px;
height: 55px;
background-color: orangered;
color: black;
border: thin;
font-family: "Times New Roman";
font-size: 30px;
font-weight: bold;
border-radius: 25px;
cursor: pointer;
}
.btn:hover{
background-color:violet;
color: purple;
transition-duration: 0.2s;
}
.sky {
position: absolute;
height: 160px;
margin-top: 25px;
}