Newer
Older
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
.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; }
}
}
button {
float: right;
border-radius: 0px;
border: 1px solid grey;
cursor: pointer;
border-top-left-radius: 10px;
background: darkgrey;
&.active {
background: white;
}
}
}
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( 100% - 30px );
padding: 10px;
@media screen and ( max-width: 500px ){
body {
font-size: 0.8em;
}
}
@media screen and ( min-width: 990px ){
.div_left, .div_right {
width: calc( 50% - 40px );
float: left;
padding:10px;
}
.div_right {
position: fixed;
right: 20px;
top: 9px;
}
}
background: ghostwhite;
}
td a {
text-decoration: none;
color: midnightblue;
&:hover {
text-decoration: underline;
}
&:visited {
color: midnightblue;
}
}
}
img.flags {
width: 20px;
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#copypaste {
position: fixed;
z-index:200;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
padding: 10%;
background: rgba(255,255,255,0.8);
textarea {
width: 80%;
height: 70%;
}
button {
vertical-align: top;
}
}
tr.stats {
td {
&:nth-child(5),
&:nth-child(7) {
text-decoration: underline;
text-decoration-color: grey;
}
}
}
#tabelle_punktestand {
tr {
td,th {
&:last-child {
text-align: right;
font-weight: bold;
}
&:nth-child(1) { width: 25px; text-align: right; }
&:nth-child(2) { width: 25px; text-align: right; }
&:nth-child(4),
&:nth-child(5),
&:nth-child(6){ width: 15px; text-align: center; font-size: 0.9em; }
&:nth-child(7),
&:nth-child(8){ width: 15px; text-align: center; }
&:nth-child(9),
&:nth-child(11){ width: 40px; }
&:nth-child(12){ width: 30px; }
&:nth-child(13){ width: 30px; font-size: 0.8em; }
&:nth-child(14){ width: 20px; }
&:nth-child(6){ width: 20px; padding-right: 10px; }
&:nth-child(10){ width: 40px; }
tr {
td,th {
&:last-child {
text-align: right;
font-weight: bold;
}
&:nth-child(1) { width: 30px; text-align: right; }
&:nth-child(2) { width: 30px; text-align: right; }
&:nth-child(3) { width: 30px; text-align: right; }
&:nth-child(4) { width: 280px; }
&:nth-child(5) { width: 200px; }
}
}
}
#tabelle_team {
tr {
td,th {
&:nth-child(1) { width: 20px; }
&:nth-child(2) { width: 30px; }
&:nth-child(3) { width: 270px; }
&:nth-child(4) { width: 60px; }
&:nth-child(5) { width: 30px; text-align: right; }
&:nth-child(6) { width: 30px; text-align: right; }
&:nth-child(7) { width: 30px; text-align: right; }
&:nth-child(8) { width: 100px; text-align: center; }
td.p { color: green; }
td.u { color: orange; }
td.n { color: firebrick; }
.fa-flag { color: #33a; }
.fa-angry { color: #c84; }
.fa-shield-alt, .fa-bullseye { color: #444; }
.fa-poo { color: #963; }
.fa-fist-raised { color: #66b; }
.fa-briefcase-medical { color: #a33; }
.fa-heart { color: #a3a; }
.fa-smile-wink { color: #aa3; }
.fa-star { color: #369; }
.fa-meh-rolling-eyes { color: #a42; }
.fa-crown { color: goldenrod; }
.fa-trophy { color: goldenrod; }
.fa-user-md { color: rgb(51, 102, 153); }
.fa-chess-king { color: rgb(21, 123, 162); }
button {
cursor: pointer;
border-radius: 0px;
border: 1px solid dimgray;
&.active {
background: white;
border-color: black;
}
}
}
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
#tabelle_historie {
thead tr th {
width: 24px;
text-align: center;
&.rest {
width: initial;
}
&:first-child {
width:30px;
text-align: right;
}
}
tbody tr {
td {
&:first-child {
text-align: right;
}
img {
display: block;
margin: auto;
}
&.master {
background: gold;
}
}
&:nth-child(4) td {
#lastresults {
position: fixed;
top: 40px;
left: 40px;
background: gainsboro;
padding:1em;
border: 1px solid dimgray;
cursor: pointer;
table tbody tr {
td:nth-child(6){ text-align: center; }
td:nth-child(3){ text-align: center; }
td:nth-child(2){ text-align: right; padding-left: 1em; }
#news {
text-align: left;
thead { display: table; }
tbody { display: block; max-height: 200px; overflow: auto; }
tr > th,td {
&:nth-child(1) { width: 70px; }
&:nth-child(2) { width: 20px; }
&:nth-child(3) { width: 30px; }
&:nth-child(4) { width: 270px; }
&:nth-child(5) { width: 190px; }
}
tr > td:nth-child(1){ font-size: 0.7em; }
tr:nth-child(odd){
background: whitesmoke;
}
}
.mono {
font-family: monospace;
font-size: 1.2em;
}
> img {
position: absolute;
&:nth-child(1){ z-index: 1 }
&:nth-child(2){ z-index: 5 }
&:nth-child(3){ z-index: 2 }
&:nth-child(4){ z-index: 3 }
&:nth-child(5){ z-index: 4; position: relative; }
}
span {
margin-left:10px;
}
}
#news div.face {
position: relative;
img {
width: 20px;
left: 12px;
top: -100px;
}
}
.tabelle td.face {
img {
width: 20px;
}
}
.tabelle span.face {
position: initial;
img {
width: 20px;
margin-right: 10px;
}
}
i.fas {
padding-right:5px;
}
.tabelle img.flags {
margin-right: 5px;
}
.fa-thumbs-up {
cursor: pointer;
color: grey;
&.done {
color: green;
}
}
.managervoted.fa-thumbs-up {
color: darkgoldenrod;
}
td.managervoted {
background: palegoldenrod;
}
div.scrollen {
overflow: scroll;
}
div.scrollen_team {
overflow: auto;
max-height: 80vh;
}
.gruppe0 {
background: beige !important;
}
.gruppe1 {
background: aliceblue !important;
}
.gruppe2 {
background: lightsteelblue !important;
}
.gruppe3 {
background: lavender !important;
}
.unformated {
text-decoration: inherit;
color: inherit;
}
.divTable {
max-height:70vh;
overflow: auto;