Working on frontend interface
This commit is contained in:
parent
52fc0af6d0
commit
23b9d15a57
19 changed files with 895 additions and 0 deletions
48
frontend/static/css/fic.css
Normal file
48
frontend/static/css/fic.css
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
.navbar {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.navbar img {
|
||||
margin: 3px auto;
|
||||
height: 100px;
|
||||
}
|
||||
.navbar #clock {
|
||||
font-size: 70px;
|
||||
text-align: center;
|
||||
}
|
||||
.point {
|
||||
position: relative;
|
||||
-moz-animation: clockanim 1s ease infinite;
|
||||
-webkit-animation: clockanim 1s ease infinite;
|
||||
}
|
||||
@-webkit-keyframes clockanim {
|
||||
0% {
|
||||
opacity: 1.0;
|
||||
text-shadow: 0 0 20px #0055ff;
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 0;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1.0;
|
||||
text-shadow: 0 0 20px #0055ff;
|
||||
}
|
||||
}
|
||||
@-moz-keyframes clockanim {
|
||||
0% {
|
||||
opacity: 1.0;
|
||||
text-shadow: 0 0 20px #0055ff;
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 0;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1.0;
|
||||
text-shadow: 0 0 20px #0055ff;
|
||||
};
|
||||
}
|
||||
Reference in a new issue