ESL Overlay közvetítésekhez
Fibinger Ádám
2020-06-03 ae05924ee19a3c532bfff5a0a7631ad92545c569
Overlay átrendezések és előkészülés websocket szerverre
1 files added
2 files modified
107 ■■■■ changed files
assets/WARGASZ_we.png patch | view | raw | blame | history
assets/overlay.css 45 ●●●● patch | view | raw | blame | history
assets/overlay.scss 62 ●●●● patch | view | raw | blame | history
assets/WARGASZ_we.png
assets/overlay.css
@@ -13,7 +13,7 @@
#stripe {
  position: fixed;
  top: -3px;
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
@@ -30,20 +30,20 @@
}
#stripe .team {
  position: fixed;
  margin-top: 2px;
  width: 435px;
  margin-top: 4px;
  width: 500px;
  overflow: hidden;
}
#stripe .team .name {
  color: white;
  font-size: 33px;
  font-size: 28px;
}
#stripe .team.blue {
  left: 325px;
  left: 270px;
  text-align: right;
}
#stripe .team.orange {
  left: 1160px;
  left: 1150px;
  text-align: left;
}
#stripe .ban {
@@ -58,7 +58,6 @@
}
#stripe .info {
  position: inherit;
  top: -3px;
  width: 300px;
  height: 50px;
}
@@ -138,8 +137,6 @@
  margin-right: 8px;
}
#stripe .wargasz-logo {
  height: 40px;
  margin-top: 5px;
  margin-right: 8px;
}
#stripe .flag.hun {
@@ -152,14 +149,29 @@
  display: table-cell;
  vertical-align: middle;
  height: 50px;
  font-size: 20px;
  font-size: 15px;
  text-shadow: 1px 1px 1px black, 1px 0 1px black, 0 -1px 1px black, -1px -1px 1px black;
  width: 350px;
}
#stripe .text em {
  display: block;
  position: absolute;
  top: 11px;
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  font-weight: normal;
  font-size: 20px;
}
#stripe .text.rotate em {
  animation-name: fade;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-duration: 15s;
}
#stripe .text.rotate em:nth-child(1) {
  animation-direction: alternate-reverse;
}
#stripe .text.rotate em:nth-child(2) {
  animation-direction: alternate;
}
#main {
@@ -194,4 +206,13 @@
  top: 2em;
}
@keyframes fade {
  0%, 49% {
    opacity: 0;
  }
  51%, 100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=overlay.css.map */
assets/overlay.scss
@@ -13,7 +13,7 @@
#stripe {
  position: fixed;
  top: -3px;
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
@@ -33,22 +33,22 @@
  .team {
    position: fixed;
    margin-top: 2px;
    width: 435px;
    margin-top: 4px;
    width: 500px;
    overflow: hidden;
    .name {
      color: white;
      font-size: 33px;
      font-size: 28px;
    }
    &.blue {
      left: 325px;
      left: 270px;
      text-align: right;
    }
    &.orange {
      left: 1160px;
      left: 1150px;
      text-align: left;
    }
  }
@@ -68,7 +68,6 @@
  .info {
    position: inherit;
    top: -3px;
    width: 300px;
    height: 50px;
  }
@@ -90,11 +89,14 @@
    left: 861px;
    width: 32px;
    height: 14px;
    &.left {
      left: 861px;
      &.one {
        top: 6px;
      }
      &.two {
        top: 23px;
      }
@@ -102,14 +104,16 @@
    &.right {
      left: 1028px;
      &.one {
        top: 6px;
      }
      &.two {
        top: 23px;
      }
    }
 }
  }
  .operator {
@@ -137,6 +141,7 @@
      color: red;
    }
  }
  .operator :after {
    z-index: -1px;
    position: relative;
@@ -147,9 +152,11 @@
    height: 33px;
    display: block;
  }
  .blue .operator :after {
    box-shadow: 0 0 10px 0 #1486e5;
  }
  .orange .operator :after {
    box-shadow: 0 0 10px 0 #EA7019;
  }
@@ -159,9 +166,10 @@
    margin-top: 5px;
    margin-right: 8px;
  }
  .wargasz-logo {
    height: 40px;
    margin-top: 5px;
    // height: 40px;
    //margin-top: 5px;
    margin-right: 8px;
  }
@@ -176,7 +184,7 @@
    display: table-cell;
    vertical-align: middle;
    height: 50px;
    font-size: 20px;
    font-size: 15px;
    text-shadow: 1px 1px 1px black,
    1px 0 1px black,
    0 -1px 1px black,
@@ -185,10 +193,29 @@
  }
  .text em {
    display: block;
    position: absolute;
    top: 11px;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    font-weight: normal;
    font-size: 20px;
  }
  .text.rotate {
    em {
      animation-name: fade;
      animation-fill-mode: both;
      animation-iteration-count: infinite;
      animation-duration: 15s;
      &:nth-child(1) {
        animation-direction: alternate-reverse;
      }
      &:nth-child(2) {
        animation-direction: alternate;
      }
    }
  }
}
#main {
@@ -229,5 +256,14 @@
      top: 2em;
    }
  }
}
@keyframes fade {
  0%, 49% {
    opacity: 0;
  }
  51%, 100% {
    opacity: 1;
  }
}