server/htdocs/css/score.css

86 lines
1.4 KiB
CSS

.clock {
background:#202020;
margin: 0 auto;
padding: 30px;
border: 1px solid #333;
color: #fff;
}
#Date {
background:#202020;
font-family: bold, sans-serif;
text-align:center;
text-shadow:0 0 5px #00c6ff;
}
#Date + ul {
width: 800px;
margin: 0 auto;
padding: 0px;
list-style: none;
text-align: center;
}
#Date + ul li {
display: inline;
font-size: 5em;
text-align: center;
font-family: sans-serif;
text-shadow: 0 0 5px #00c6ff;
}
.samptest {
display: block !important;
overflow-x: scroll;
text-overflow: ellipsis;
}
samp {
display: block;
overflow-x: auto;
text-overflow: ellipsis;
}
.point {
position: relative;
-moz-animation: mymove 1s ease infinite;
-webkit-animation: mymove 1s ease infinite;
padding-left: 10px;
padding-right: 10px;
}
/* Simple Animation */
@-webkit-keyframes mymove {
0% {
opacity: 1.0;
text-shadow: 0 0 20px #00c6ff;
}
50% {
opacity: 0;
text-shadow: none;
}
100% {
opacity: 1.0;
text-shadow: 0 0 20px #00c6ff;
}
}
@-moz-keyframes mymove {
0% {
opacity: 1.0;
text-shadow: 0 0 20px #00c6ff;
}
50% {
opacity: 0;
text-shadow: none;
}
100% {
opacity: 1.0;
text-shadow: 0 0 20px #00c6ff;
};
}