-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.css
114 lines (94 loc) · 1.53 KB
/
default.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
@CHARSET "UTF-8";
body {
font-family: Arial, Helvetica, sans-serif;
background-color: AliceBlue;
}
th {
text-align: left;
white-space: nowrap;
}
.greedy {
width: 100%;
}
table.players {
margin-left: 50px;
width: 0%;
}
table.team {
margin-left: 50px;
width: 0%;
}
table.teamplayers {
margin-left: 100px;
width: 0%;
}
table.results {
margin-left: 50px;
margin-top: 20px;
border-collapse: collapse;
}
th.results {
padding: 5px;
border-style: solid;
border-width: 1px;
border-color: black;
border-spacing: 0px;
}
td.results {
padding: 5px;
border-style: solid;
border-width: 1px;
border-color: black;
border-spacing: 0px;
}
td.label {
padding-right: 30px;
text-wrap: none;
}
td.note {
padding-left: 30px;
text-wrap: none;
}
.Number {}
.String {}
div.Error {
margin-top: 30px;
color: red;
}
a:link {
text-decoration: none;
color: blue;
}
a:visited {
text-decoration: none;
color: blue;
}
a:hover {
text-decoration: underline;
color: blue;
}
a:active {
text-decoration: underline;
color: blue;
}
table.deflist {
margin-left: 50px;
margin-top: 20px;
border-collapse: collapse;
}
th.deflist {
padding: 5px;
border-style: solid;
border-width: 1px;
border-color: black;
border-spacing: 0px;
vertical-align: top;
}
td.deflist {
padding: 5px;
border-style: solid;
border-width: 1px;
border-color: black;
border-spacing: 0px;
vertical-align: top;
}