frontend: improve main interface
This commit is contained in:
parent
70b6b30067
commit
32e8f931b9
8 changed files with 477 additions and 354 deletions
|
|
@ -13,42 +13,51 @@ body {
|
|||
font-size: 70px;
|
||||
text-align: center;
|
||||
}
|
||||
.point {
|
||||
.point, .expired {
|
||||
transition: color text-shadow 1s;
|
||||
position: relative;
|
||||
animation: clockanim 1s ease infinite;
|
||||
-moz-animation: clockanim 1s ease infinite;
|
||||
-webkit-animation: clockanim 1s ease infinite;
|
||||
}
|
||||
.end {
|
||||
color: #A94442;
|
||||
}
|
||||
.point {
|
||||
text-shadow: 0 0 20px #0055ff;
|
||||
}
|
||||
.end .point {
|
||||
text-shadow: 0 0 20px #ff5500;
|
||||
}
|
||||
@-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;
|
||||
}
|
||||
0% { opacity: 1.0; }
|
||||
50% { opacity: 0; }
|
||||
100% { opacity: 1.0; };
|
||||
}
|
||||
@-moz-keyframes clockanim {
|
||||
0% {
|
||||
opacity: 1.0;
|
||||
text-shadow: 0 0 20px #0055ff;
|
||||
}
|
||||
0% { opacity: 1.0; }
|
||||
50% { opacity: 0; }
|
||||
100% { opacity: 1.0; };
|
||||
}
|
||||
keyframes clockanim {
|
||||
0% { opacity: 1.0; }
|
||||
50% { opacity: 0; }
|
||||
100% { opacity: 1.0; };
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 0;
|
||||
text-shadow: none;
|
||||
}
|
||||
.well {
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1.0;
|
||||
text-shadow: 0 0 20px #0055ff;
|
||||
};
|
||||
.samp {
|
||||
overflow-x: auto;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
h1 small.authors {
|
||||
float: right;
|
||||
font-size: 42%;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.teamname {
|
||||
|
|
|
|||
Reference in a new issue