-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
118 lines (95 loc) · 1.92 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
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
/*
This file is part of Keyb, a typing tutor for programming language learning
Copyright (C) 2014 Petr Kalinin, petr@kalinin.nnov.ru
Keyb is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
body {
font-family:monospace;
}
#spacesDiv, #numWordsDiv, #fNameDiv {
padding-bottom:1em;
}
#numWords {
width:3em;
text-align:right;
font-family:monospace;
font-size:100%;
}
#fNameDiv select {
font-family:monospace;
font-size:100%;
}
#mainCont {
width:50em;
text-align:center;
margin:auto;
padding-top:50px;
}
#start {
margin:auto;
font-family:monospace;
font-size:150%;
}
.run {
border: 2px solid #666666;
width:100%;
padding:5px;
margin:2px;
position:relative;
text-align:left;
}
.sample, .ouf, #input {
font-size:100%;
border:2px;
}
#input {
width:100%;
font-family:monospace;
}
.ok {
color:green;
}
.fail {
color:red;
}
.speed, .time {
position:absolute;
right:3px;
}
.speed {
bottom:3px;
}
.time {
top:3px;
}
.final {
margin-top:3px;
margin-bottom:5px;
}
pre {
display:inline;
margin:0px;
padding:0px;
}
#footer {
border-top: 1px solid #555555;
padding-top: 5px;
margin-top: 60px;
font-size: 70%;
}
#footer p {
padding-top:3px;
margin:0px;
}
pre.bad {
background:#ffff00;
}