Skip to content
Snippets Groups Projects
custom.scss 4.7 KiB
Newer Older
TonyFord's avatar
TonyFord committed
---
---
TonyFord's avatar
TonyFord committed
@import url("fonts/stylesheet.css");
TonyFord's avatar
TonyFord committed

body {
TonyFord's avatar
TonyFord committed
  font-family: "open_sans";
TonyFord's avatar
TonyFord committed
  font-size: 0.9em;
}

TonyFord's avatar
TonyFord committed
.d-none {
  display: none;
}

TonyFord's avatar
TonyFord committed
.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; }
  }
}


table.tabelle {
TonyFord's avatar
TonyFord committed
  width: 100%;
  padding: 5px;
  /* padding-left: 10px; */
}

TonyFord's avatar
TonyFord committed
h4.tabelle {
  padding:5px;
TonyFord's avatar
TonyFord committed
  margin:0px;
TonyFord's avatar
TonyFord committed
}


TonyFord's avatar
TonyFord committed
h4.tabelle {
  max-width: 600px;
TonyFord's avatar
TonyFord committed
  background: cornflowerblue;
TonyFord's avatar
TonyFord committed
  button {
    float: right;
    border-radius: 0px;
    border: 1px solid grey;
    cursor: pointer;
    border-top-left-radius: 10px;
    background: darkgrey;
    &.active {
      background: white;
    }
  }
TonyFord's avatar
TonyFord committed
}


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;
    padding-right: 3px;
TonyFord's avatar
TonyFord committed
  }
}

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;
TonyFord's avatar
TonyFord committed
}

@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;
  }
}


TonyFord's avatar
TonyFord committed
.div_left {
  text-align: right;
}

TonyFord's avatar
TonyFord committed

tr.begegnungen {
TonyFord's avatar
TonyFord committed
  &:nth-child(4n+1), &:nth-child(4n+3){
TonyFord's avatar
TonyFord committed
    background: ghostwhite;
  }
  td a {
    text-decoration: none;
    color: midnightblue;
    &:hover {
      text-decoration: underline;
    }
    &:visited {
      color: midnightblue;
    }
  }
}

img.flags {
  width: 20px;
TonyFord's avatar
TonyFord committed
  border: 1px solid darkgrey;
TonyFord's avatar
TonyFord committed
}
TonyFord's avatar
TonyFord committed

#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 {
  max-width: 610px;
TonyFord's avatar
TonyFord committed
  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: 220px; }
      &:nth-child(4) { width: 50px; }
      &:nth-child(5) { width: 50px; }
    }
  }
}

#tabelle_tore, #tabelle_assists, #tabelle_zweikampf {
  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: 280px; }
      &:nth-child(4) { width: 200px; }
    }
  }
}

td.p { color: green; }
td.u { color: orange; }
td.n { color: firebrick; }
TonyFord's avatar
TonyFord committed


.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; }
TonyFord's avatar
TonyFord committed

#saisons {
  padding-left: 5px;
TonyFord's avatar
TonyFord committed
  margin-bottom: 5px;
TonyFord's avatar
TonyFord committed
  button {
    cursor: pointer;
    border-radius: 0px;
    border: 1px solid dimgray;
    &.active {
      background: white;
      border-color: black;
    }
  }
}
TonyFord's avatar
TonyFord committed

#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 {
TonyFord's avatar
TonyFord committed

TonyFord's avatar
TonyFord committed
    }
  }
}
TonyFord's avatar
TonyFord committed

.dashed {
  border-bottom: 1px dashed blue;
}