Merge CSS files and introduce dev theme

This commit is contained in:
nemunaire 2014-11-20 11:17:45 +01:00
commit d368f0862b
8 changed files with 39 additions and 42 deletions

View file

@ -1,74 +0,0 @@
.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;
}
.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;
};
}