Newer
Older
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
---
---
body {
font-family: "Helvetica", Helvetica, Arial;
font-size: 0.9em;
}
.saison {
background: darkcyan;
padding: 5px;
padding-right: 10px;
}
.runde {
background: cadetblue;
padding: 5px;
padding-right: 10px;
}
.spieltag {
background: aliceblue;
padding: 5px;
padding-right: 10px;
}
.partien {
width: 100%;
tr td {
&:nth-child(3), &:nth-child(6) {
text-align: center;
}
&:nth-child(4), &:nth-child(7) {
text-align: left;
}
&:nth-child(1) { width: 100px; }
&:nth-child(2) { width: 180px; }
&:nth-child(3) { width: 20px; }
&:nth-child(4) { width: 180px; }
&:nth-child(5) { width: 20px; }
&:nth-child(6) { width: 20px; }
&:nth-child(7) { width: 20px; }
}
}
.tabelle {
width: 100%;
padding: 5px;
padding-left: 10px;
}
h2.tabelle {
background: cornflowerblue;
}
table.tabelle {
border-collapse: collapse;
thead tr th {
text-align: left;
background: lavender;
padding:3px;
}
tbody {
tr:nth-child(2n) {
background: whitesmoke;
}
tr td a {
text-decoration: none;
color: midnightblue;
&:hover {
text-decoration: underline;
}
&:visited {
color: midnightblue;
}
}
}
td {
padding-left: 3px;
}
}
s,u,n {
display: block;
height: 13px;
width: 5px;
float:left;
margin-right:1px;
border-radius: 2px;
}
s {
background:green;
}
u {
background:goldenrod;
}
n {
background:firebrick;
}
.div_left, .div_right {
width: calc( 50% - 40px );
float: left;
padding:10px;
}
.div_left {
text-align: right;
}
.div_right {
position: fixed;
right: 20px;
top: 9px;
}
tr.begegnungen {
&:nth-child(4n+1), &:nth-child(4n+2){
background: ghostwhite;
}
td a {
text-decoration: none;
color: midnightblue;
&:hover {
text-decoration: underline;
}
&:visited {
color: midnightblue;
}
}
}
img.flags {
width: 20px;