Merge CSS files and introduce dev theme
This commit is contained in:
parent
2d4e7400cb
commit
d368f0862b
8 changed files with 39 additions and 42 deletions
87
htdocs/css/main.css
Normal file
87
htdocs/css/main.css
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
.clock {
|
||||
background:#202020;
|
||||
margin: 0 auto;
|
||||
padding: 30px;
|
||||
border: 1px solid #333;
|
||||
color: #fff;
|
||||
}
|
||||
.clock #ficlogo {
|
||||
float: left;
|
||||
height: 100px;
|
||||
margin-left: 25px;
|
||||
width: 12%;
|
||||
}
|
||||
.clock #epitalogo {
|
||||
float: right;
|
||||
height: 100px;
|
||||
width: 14%;
|
||||
}
|
||||
.clock #ficlogo img {
|
||||
max-height: 170px;
|
||||
max-width: 100%;
|
||||
}
|
||||
.clock #epitalogo img {
|
||||
max-height: 170px;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
#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: clockanim 1s ease infinite;
|
||||
-webkit-animation: clockanim 1s ease infinite;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
@-webkit-keyframes clockanim {
|
||||
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 clockanim {
|
||||
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;
|
||||
};
|
||||
}
|
||||
Reference in a new issue