-
Notifications
You must be signed in to change notification settings - Fork 1
/
typing.css
97 lines (91 loc) · 1.43 KB
/
typing.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
body
{ width:100%;
margin: 0px auto;
padding: 0;
font-family:"sans-serif","arial";
}
.bubb
{
position:absolute;
width:40px;
height:40px;
color:#fff;
font: bold 30px arial;
background-color:yellow;
text-align: center;
border-radius:40px;
vertical-align:middle;
padding:5px;
}
#score
{
font-size:80px;
color: #8b5c5c;
top: 25px;
right: 50px;
display:none;
text-align:right;
}
#time
{
font-size:50px;
color:#ff0000;
top:120px;
right:50px;
display:none;
text-align:right;
}
#speed
{
font-size:50px;
color:#ff0000;
top:120px;
right:50px;
display:none;
text-align:right;
}
#start
{
padding: 10px 25px;
text-align: center;
font-style:bold;
font-size:16px;
background-color:#dedede;
color:#000;
border-radius:20px;
-webkit-border-radius:20px;
-moz-border-radius:20px;
position:absolute;
}
#start:hover
{
cursor:pointer;
}
#timeUp
{
padding: 10px 25px;
text-align: center;
font-style:bold;
z-index:100;
font-size:16px;
background-color:#dedede;
color:#000;
border-radius:20px;
-webkit-border-radius:20px;
-moz-border-radius:20px;
position:absolute;
display:none;
}
#timeUp:hover
{
cursor:pointer;
}
#Backgound
{
width:100%;
height:100%;
z-index:99;
display:none;
background:rgba(121, 121, 124, 0.4);
position:absolute;
}