This repository has been archived on 2025-06-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
server/frontend/static/css/fic.css
2016-01-21 05:34:00 +01:00

62 lines
995 B
CSS

body {
overflow-y: scroll;
}
.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;
};
}
.teamname {
padding: 2px 7px;
border-radius: 2px;
box-shadow: #444 0 0 3px;
}
.teamname span {
-webkit-filter: invert(100%);
filter: invert(100%);
}