Skip to content

Commit

Permalink
added livecount
Browse files Browse the repository at this point in the history
  • Loading branch information
rndexe authored Sep 19, 2020
1 parent 1f35c33 commit 7a81678
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion css/livetheatre.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ iframe {
}

div.controls {
padding: 10px;
opacity: 0.5;
background-color: none;
z-index: 0;
Expand Down Expand Up @@ -51,3 +50,37 @@ input {
border: solid white thin;
padding: 10px;
}


#live {
opacity:0.5;
margin-top:3%;
margin-right:3%;
padding: 5px;
border-radius: 5px;
float: right;
}

.blinking {
color: red;
font-size: 15px;
-webkit-animation: 1s blink ease infinite;
animation: 1s blink ease infinite;
}

@keyframes "blink" {
from, to {
opacity: 0;
}
50% {
opacity: 1;
}
}
@-webkit-keyframes "blink" {
from, to {
opacity: 0;
}
50% {
opacity: 1;
}
}

0 comments on commit 7a81678

Please sign in to comment.