-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
73 lines (63 loc) · 1.14 KB
/
css.css
File metadata and controls
73 lines (63 loc) · 1.14 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
.loading {
font: bold 50pt verdana;
color: #888;
overflow:hidden;
}
.loading:before {
padding:1em;
content: "Loading...";
text-align: center;
width: calc(100% - 2em);
height: calc(100% - 2em);
position: absolute;
left: 0;
top: 0;
z-index: 100;
background: #eee;
opacity: .75;
}
#plot {
min-width: 768px;
width: 80%;
height: 512px;
font-weight:bold;
margin:0 auto;
}
#selectors, select {
font: 16pt tahoma;
}
#selectors {
text-align: center;
padding-bottom: 1em;
margin-bottom: 1em;
background: #3d405b;
padding :1em;
color: #f4f1de;
}
select {
border:0;
background: #f4f1de;
color: #3d405b;
border-radius: 5px;
}
input[type="radio"] {
}
#message {
width: 75%;
margin: 1em auto;
background: #3d405b;
border-top-left-radius: 2em;
border-bottom-right-radius: 2em;
text-align: justify;
padding: 2em;
font: 11pt helvetica;
color: #f4f1de;
}
#message:before {
content: "Only athletes who have entered their scores are analyzed. "
}
body {
background: #f4f1de;
color: #f4f1de;
margin: 0;
}