-
Notifications
You must be signed in to change notification settings - Fork 966
Expand file tree
/
Copy pathdayten.css
More file actions
107 lines (102 loc) · 1.99 KB
/
dayten.css
File metadata and controls
107 lines (102 loc) · 1.99 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.frame {
position: absolute;
top: 50%;
left: 50%;
width: 400px;
height: 400px;
margin-top: -200px;
margin-left: -200px;
border-radius: 2px;
box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
overflow: hidden;
background-image: radial-gradient( circle 400px at 6.8% 8.3%, rgba(255,244,169,1) 0%, rgba(255,244,234,1) 100.2% );
color: #fff;
font-size: 12px;
text-transform: uppercase;
font-family: "Open Sans", Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.base_c {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
width: 200px;
height: 200px;
background: #000;
border: 7px solid #444;
text-align: center;
}
.contents {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.heart {
display: flex;
justify-content: space-between;
}
.heart .fa-heart {
color: #da1616;
font-size: 10px;
margin-top: 1px;
margin-right: -5px;
}
.time {
font-weight: 700;
top: 80px;
font-size: 40px;
// line-height: 100%;
}
.red_c {
position: absolute;
top: 50%;
left: 50%;
width: 184px;
height: 184px;
transform: translate(-50%, -50%);
}
.red_c circle {
stroke: #ac1212;
fill: none;
stroke-width: 4px;
stroke-dasharray: 625;
-webkit-animation: spinner 5s linear infinite;
animation: spinner 5s linear infinite;
transform-origin: center center;
transform: rotate(-90deg);
}
@keyframes spinner {
0% {
stroke-dashoffset: 625;
transform: rotate(-90deg) scaleY(1);
}
50% {
stroke-dashoffset: 0;
transform: rotate(-90deg) scaleY(1);
}
50.0001% {
transform: rotate(-90deg) scaleY(-1);
}
100% {
stroke-dashoffset: 625;
transform: rotate(-90deg) scaleY(-1);
}
}
.dotted_c {
position: absolute;
top: 50%;
left: 50%;
width: 164px;
height: 164px;
transform: translate(-50%, -50%);
}
.dotted_c circle {
stroke: #fff;
fill: none;
stroke-width: 2px;
stroke-dasharray: 2 8.5;
}