YL
2021-05-27 457e7684fc636fff2b3963fd132281f7f5efedbd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
 
 
a {
    text-decoration: none;
    color: #00c6ff;
}
 
/* clock */
.clock {
    width:450px;
    float: right;
    color: #fff;
    margin-top: -20px;
    margin-right:5px;
    color:#3bff72;
}
 
    .clock #Date {
        font-family: 'BebasNeueRegular', Arial, Helvetica, sans-serif;
        font-size: 24px;
        text-align: center;
        text-shadow: 0 0 0px #00c6ff;
        float:left;
    }
 
    .clock ul {
        width:450px;
        margin: 0 auto;
        padding: 0px;
        list-style: none;
        text-align: right;
    }
 
        .clock ul li {
            display: inline;
            font-size: 24px;
            text-align: right;
            font-family: 'BebasNeueRegular', Arial, Helvetica, sans-serif;
            text-shadow: 0 0 0px #00c6ff;
        }
 
#point {
    position: relative;
    -moz-animation: mymove 1s ease infinite;
    -webkit-animation: mymove 1s ease infinite;
    padding-left: 5px;
    padding-right: 5px;
}
 
@-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;
    }
}