Add get_teams and get_top functions for User class
This commit is contained in:
parent
b69ecd3e70
commit
68dcb996c9
7 changed files with 158 additions and 25 deletions
|
|
@ -1,3 +1,74 @@
|
|||
body {
|
||||
|
||||
.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;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue