aboutsummaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-03-15 20:15:19 +0100
committerJoris Guyonvarch2015-03-15 20:16:14 +0100
commitd5ec91d4d01db6f4d476522d5b14e116435ebb7d (patch)
tree76154fddf12254db1488e17752c41530ef8f6095 /style.css
parentce6775641639943a2aee00fa9c2d684aa434bc21 (diff)
Displaying the last score in elm graphics instead of in helm html
Diffstat (limited to 'style.css')
-rw-r--r--style.css51
1 files changed, 0 insertions, 51 deletions
diff --git a/style.css b/style.css
index 763cb22..6499535 100644
--- a/style.css
+++ b/style.css
@@ -67,54 +67,3 @@ p {
color: white;
}
}
-
-ul.rounds {
- padding-left: 0;
- color: white;
- list-style-type: none;
- position: absolute;
- width: 300px;
- left: 50%;
- margin-left: -150px;
- top: 110px;
-}
-
-ul.rounds > li {
- background-color: #333333;
- text-align: center;
- border-radius: 2px;
- animation: hide 5s ease;
-
- opacity: 0;
- height: 0px;
- line-height: 0px;
- margin-bottom: 0px;
-}
-
-@keyframes hide {
- 0% {
- opacity: 1;
- height: 40px;
- line-height: 40px;
- margin-bottom: 10px;
- }
- 90% {
- opacity: 1;
- height: 40px;
- line-height: 40px;
- margin-bottom: 10px;
- }
- 95% {
- opacity: 0;
- height: 40px;
- line-height: 40px;
- margin-bottom: 10px;
- }
- 100% {
- opacity: 0;
- height: 0px;
- line-height: 0px;
- margin-bottom: 0px;
- }
-}
-