-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathscore.html
More file actions
125 lines (117 loc) · 2.71 KB
/
score.html
File metadata and controls
125 lines (117 loc) · 2.71 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html>
<head>
<title>SCORE</title>
</head>
<style>
.typer {
/* Style for "TypeRacer" */
width: 198px;
height: 50px;
color: #4e4e4e;
font-family: Grinched;
font-size: 39px;
font-weight: 400;
position: absolute;
z-index: 10;
top: 0px;
margin-top: 25px;
}
#scoretext {
width: 712px;
height: 170px;
color: #4e4e4e;
font-family: Coolvetica;
font-size: 103px;
font-weight: 400;
letter-spacing: 11px;
padding-left: 480px;
padding-top: 260px;
position: absolute;
z-index: 6;
}
#scorebox {
/* Style for "Path 1" */
width: 347px;
height: 98px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
border: 2px solid #ffc070;
border-radius: 19px;
margin-left: 580px;
position: absolute;
z-index: 5;
margin-top: 428px;
}
#scoree {
/* Style for "50 wpm" */
width: 312px;
height: 92px;
color: #7a7a7a;
font-family: Montserrat;
font-size: 75px;
font-weight: 500;
position: absolute;
margin-left: 620px;
margin-top: 428px;
}
#tip {
/* Style for "Corrected" */
width: 292px;
height: 35px;
color: #7a7a7a;
font-family: Montserrat;
font-size: 23px;
font-weight: 500;
padding-left: 610px;
padding-top: 640px;
position: absolute;
z-index: 5;
}
#wpm {
/* Style for "50 wpm" */
width: 312px;
height: 92px;
color: #7a7a7a;
font-family: Montserrat;
font-size: 75px;
font-weight: 500;
position: absolute;
margin-left: 680px;
margin-top: 428px;
}
#homepage {
width: 182px;
height: 42px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
border: 2px solid #ffc070;
border-radius: 9px;
margin-left: 1307px;
position: absolute;
z-index: 5;
margin-top: 8px;
background-color: #ffc070;
opacity: 0.75;
}
.bth {
position: absolute;
z-index: 6;
color: #4e4e4e;
margin-left: 1321px;
margin-top: 19px;
font-family: Montserrat;
}
</style>
<body bgcolor="#FCF7EF" onload="updatescore()">
<div>
<p class="typer" style="padding-left: 51px;">TypeRacer</p>
<div id="scoretext">Your Score:</div>
<div id="scorebox"></div>
<p id="scoree">30</p>
<p id="wpm">wpm</p>
<pre id="tip">You are really slow damn! </pre>
<a href="start.html"><button id="homepage"></button></a>
<a href="start.html"><p class="bth">Back to Homepage</p></a>
<script src="assets/js/script.js"></script>
</div>
</body>
</html>