-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCx2.css
107 lines (97 loc) · 1.66 KB
/
Cx2.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@font-face {
font-family: Poppins;
src: url('./Poppins-Bold.ttf');
}
body{
background-image:url("img/background.jpg");
background-repeat: no-repeat;
background-size: auto;
color: white;
font-family: Poppins;
}
canvas{
width: 1000px;
height: 500px;
margin:30px;
position: relative;
background: white;
border: 3px solid black;
}
#record{
font-size: 40px;
border: 3px solid white;
}
.description {
font-size: 25px;
margin-left: 50px;
color:#89D5F7;
text-shadow: 0 0 45px #89D5F7, 0 0 18px #89D5F7;
}
.scoreboard {
position: absolute;
width: 300px;
height: 500px;
top: 40px;
background-color: #000;
color: #89D5F7;
text-align: center;
left: 1043px;
font-size: 40px;
border: 3px solid #89D5F7;
text-shadow: 0 0 45px #89D5F7, 0 0 18px #89D5F7;
}
.points {
background-color: #39A4F5;
width: 200px;
color: #000;
margin: 50px auto;
padding: 10px;
box-shadow: 0 0 50px #39A4F5, 0 0 21px #39A4F5;
}
.gameover {
position: absolute;
z-index: 10;
top: 40px;
left: 40px;
width: 1312px;
height: 506px;
background-color: black;
text-align: center;
}
.hide {
display: none;
}
h1 {
color:#89D5F7;
font-size: 50px;
text-shadow: 0 0 50px #89D5F7, 0 0 21px #89D5F7;
}
h2 {
color:#89D5F7;
font-size: 40px;
text-shadow: 0 0 50px #89D5F7, 0 0 21px #89D5F7;
}
button {
display: block;
padding: 0px;
margin:10px;
width: 200px;
height: 60px;
background-color: #000;
color: #89D5F7;
border-radius: 20px;
border: 3px solid #89D5F7;
outline: none;
font-family: Poppins;
font-size: 20px;
cursor: pointer;
}
button:hover{
background:#89D5F7;
color:#000;
box-shadow: 0 0 50px#89D5F7, 0 0 21px #89D5F7;
}
.btndis{
display:flex;
justify-content: center;
}