-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtyping.css
More file actions
196 lines (191 loc) · 3.74 KB
/
typing.css
File metadata and controls
196 lines (191 loc) · 3.74 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
.headBox{
text-align: center;
color:rgb(217, 230, 243);
font-family:'Courier New', Courier, monospace;
font-size:60px;
border-radius:10px;
letter-spacing: 2px;
text-shadow:1px 1px 1px rgb(0, 195, 255), -1px -1px 1px rgb(0, 195, 255);
margin-bottom: 10px;
box-shadow: 0px 2px 1px grey;
font-weight:bold;
}
.headBox .bars{
margin:10px;
float:right;
right:0px;
font-size:15px;
color:black;
}
.headBox .barsL{
margin:10px;
float:left;
right:0px;
font-size:15px;
color:black;
}
.centerPosition{
display:flex;
align-items:center;
justify-content:center;
margin-bottom:10px;
}
.idBox{
color:rgb(79, 176, 206);
font-weight:bold;
}
#idBox{
outline:none;
margin-bottom:40px;
border:0px;
}
.showText{
width:60%;
border-radius:15px;
border:1px solid #acc;
display:block;
margin-bottom: 10px;
overflow: hidden;
text-align: justify;
text-justify: inter-word;
padding:10px;
font-size:30px;
font-family: Consolas,monaco,monospace;
line-height: 1.5;
background-color:white;
box-shadow: 0px 2px 1px grey;
z-index:1;
}
.centerPosition .divBox1{
position:absolute;
height:50px;
width:50px;
border-radius:25px;
display:flex;
align-items:center;
justify-content:center;
animation:round 5s ease-in infinite;
}
@keyframes round{
0%{transform:rotateZ(0deg);}
100%{transform:rotateZ(360deg);}
}
.divBox2{
background-color:rgb(74, 207, 174);
height:100%;
width:10px;
border-radius:5px;
position:absolute;
}
.divBox3{
position:absolute;
height:30px;
width:30px;
border-radius:15px;
background-color:#fdfdfd;
}
#restart,#startBox,#merit{
padding:5px;
border-radius:10px;
background-color:rgba(0, 118, 253, 0.507);
color:white;
margin-left:10px;
}
#textBox{
outline:none;
font-size:23px;
font-family:monospace, 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color:rgb(7, 7, 7);
}
#showWpm{
color:rgb(0, 0, 0);
font-family:Georgia, 'Times New Roman', Times, serif;
font-size:20px;
padding:10px;
border-radius:5px 20px 5px 20px;
}
.spanColor1{
color:green;
}
.spanColor2{
color:red;
}
.developer{
position:fixed;
right:3px;
bottom:0px;
color:rgb(167, 156, 156);
font-family:fantasy;
}
.wpmValue{
color:rgb(13, 95, 95);
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.moreBox{
position:fixed;
background-color:black;
border-radius:20px 0px 0px 0px;
border-bottom:8px ridge #ccc;
width:100px;
right:0px;
top:60px;
padding:10px;
z-index:2;
}
#moreBox{
display:none;
}
.optionStyle{
color:white;
padding-bottom:5px;
padding-left:10px;
padding-right:10px;
font-size:13px;
border-radius:5px;
font-weight:bold;
text-decoration: none;
border-bottom:1px solid #acc;
margin-bottom:5px;
}
#meritShow{
background:#000000;
border-radius:20px 20px 0px 0px;
position:fixed;
top:100px;
width:320px;
height:400px;
padding-top:30px;
color:#ffffff;
padding:0px;
font-size:18px;
overflow:scroll;
display:none;
z-index:3;
}
#meritShow #meritClose{
color:rgb(5, 5, 5);
position:fixed;
width:320px;
border-radius:20px 20px 0px 0px;
text-align:center;
font-weight:bold;
font-size:25px;
background-color:aquamarine;
box-shadow:0px 3px 2px #ffffff;
}
#closeButton{
color:rgb(23, 79, 112);
float:right;
padding-right:10px;
}
.meritPerson{
width:320px;
padding-bottom:10px;
padding-left:5px;
font-size:15px;
border-bottom:1px solid #ffff00;
}
.wpmMerit{
color:rgb(145, 240, 21);
font-size:10px;
}