timelaps-front/css/timelaps.css
bglacial d651d0f6b9 Adding profiles pictures
Adding gitignore
First try for the kart dashboard
2019-04-21 01:02:46 +02:00

26 lines
575 B
CSS

.driver_img{
max-width: 107px;
}
.glow {
color: white;
-webkit-animation-name: blink;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: blink;
-moz-animation-duration: 1s;
-moz-animation-iteration-count: infinite;
-ms-animation-name: blink;
-ms-animation-duration: 1s;
-ms-animation-iteration-count: infinite;
-o-animation-name: blink;
-o-animation-duration: 1s;
-o-animation-iteration-count: infinite;
animation-name: blink;
animation-duration: 1s;
animation-iteration-count: infinite;
}