fade & whitespace

This commit is contained in:
2021-07-24 13:24:31 +02:00
parent 8f7b1b47ac
commit 23fa7f9862

View File

@@ -64,14 +64,14 @@ body{
font-size: 5vw; font-size: 5vw;
margin-right: 2.5%; margin-right: 2.5%;
} }
.input-field{ .input-field{
margin-top: 2vw; margin-top: 2vw;
float: left; float: left;
font-size: 6vw; font-size: 6vw;
margin-right: 10px; margin-right: 10px;
} }
.input-field-number{ .input-field-number{
display: none; display: none;
} }
@@ -81,7 +81,7 @@ body{
} }
} }
/* ############# PLAYER INFORMATION IN LINES ############# */ /* ############# PLAYER INFORMATION IN LINES ############# */
.playerRank{ .playerRank{
margin-left:1%; margin-left:1%;
float: left; float: left;
@@ -143,7 +143,7 @@ body{
} }
.line-odd{ .line-odd{
width: 100%; width: 100%;
color: black; color: black;
background-color: lightgrey !important; background-color: lightgrey !important;
overflow: hidden; overflow: hidden;
@@ -167,7 +167,7 @@ body{
font-size: 4.5vw; font-size: 4.5vw;
width: 100%; width: 100%;
} }
.colum-names{ .colum-names{
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
@@ -199,14 +199,14 @@ body{
width: 15%; width: 15%;
text-align: left; text-align: left;
} }
.playerWinratio{ .playerWinratio{
/* 19% is just enought to cut the last letter */ /* 19% is just enought to cut the last letter */
width: 19%; width: 19%;
} }
} }
/* ######################## FOOTER ####################### */ /* ######################## FOOTER ####################### */
.footer{ .footer{
text-align: center; text-align: center;
font-weight: bold; font-weight: bold;
@@ -217,7 +217,6 @@ body{
bottom: 0; bottom: 0;
left: 0; left: 0;
height: 30px; height: 30px;
} }
.footerLink{ .footerLink{
@@ -241,7 +240,6 @@ body{
.footerLink{ .footerLink{
font-size: 4vw; font-size: 4vw;
} }
.mid{ .mid{
margin-left: 2.5%; margin-left: 2.5%;
margin-right: 2.5%; margin-right: 2.5%;
@@ -258,3 +256,11 @@ body{
font-style: italic; font-style: italic;
font-weight: bold; font-weight: bold;
} }
@keyframes fadeIn {
from { opacity: 0.3; }
}
.animate-flicker {
animation: fadeIn 2s alternate;
}