-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
113 lines (92 loc) · 1.8 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
/* vim: textwidth=0 wrapmargin=0 shiftwidth=2 tabstop=2 expandtab
*/
/* General */
body {
background-color: #111111;
color: #e05a01;
}
.important_text {
color: #cccccc;
}
a {
color: #f4b900;
}
a:visited {
color: #5B2904;
}
/* END General */
.blurb {
width: 60em;
}
.result_row#result_X {
display: none;
}
table.results {
margin-left: 20px;
margin-right: auto;
width: auto;
background-color: #2d1408;
border: 3px solid #180704;
border-collapse: collapse;
border-spacing: 2px;
}
th.results_info_label {
color: #e55b00;
border: 2px solid #180704;
border-bottom-color: #5B2904;
border-collapse: collapse;
padding: 0.3em;
}
.results_info_item.result_datestamp {
min-width: 10em;
}
td.results_info_item {
color: #eecaee;
border: 2px solid #180704;
border-collapse: collapse;
border-right-color: #5B2904;
border-bottom-color: #5B2904;
padding: 0.3em;
}
.results_info_item.results_system {
text-align: left;
}
.results_info_item.results_number, .results_info_item.results_distance, .results_info_item.results_total, .results_info_item.results_jumped_total {
text-align: right;
}
th.header_textwrap {
width: 5em;
}
table.ed_form_table {
margin-left: 10px;
background-color: #2d1408;
border: 3px solid #180704 !important;
border-collapse: collapse;
margin-bottom: 5px;
}
input.ed_text_entry {
background-color: #2d1408;
color: #eecaee;
border-color: #180704;
padding: 0px 0.3em 0px 0.3em;
}
input.ed_text_entry:focus {
border-color: #5b2904;
background-color: #6d3103;
}
td.form_submit {
text-align: center;
}
input.form_submit {
background-color: #2d1408;
color: #eecaee;
}
select.ed_select {
background-color: #2d1408;
color: #eecaee;
border-color: #180704;
}
select.ed_select:focus {
background-color: #6d3103;
color: #eecaee;
}