-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (91 loc) · 1.68 KB
/
style.css
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
@font-face {
font-family: "Avenir Next";
font-weight: normal;
src: url("lib/AvenirNextLTPro-Regular.otf");
}
body {
background: #212121;
color: white;
font-family: 'Avenir Next';
overflow: hidden;
}
.countdown {
display: flex;
justify-content: center;
margin-top: 110px;
}
.logo {
display: flex;
justify-content: center;
}
.digit {
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
padding: 0px 40px;
}
.logo-img {
margin-top: 80px;
}
.digit-number,
.digit-text {
margin: 0;
padding: 0;
text-align: center;
}
.digit-number {
font-size: 350px;
}
.digit-text {
font-size: 105px;
}
.logo-img {
width: 600px;
height: 600px;
}
div.circle
{
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0);
width: 50vh;
height: 50vh;
opacity: 1;
background-color: white;
border-radius: 1000px;
transition: 0.75s ease-in-out all;
}
.svg
{
position: absolute;
top: 50%;
left: 49%;
width: 60%;
height: 60%;
transform: translate(-50%,-50%) scale(1);
}
.svg path
{
stroke: white;
stroke-dasharray: 100vh; /* --- 2 * pi * r --- */
stroke-dashoffset: -75vh;
transition: stroke-dashoffset 3s linear;
}
@keyframes grow-shrink
{
0% {transform: translate(-50%,-50%) scale(1);}
50% {transform: translate(-50%,-50%) scale(1.2);}
100% {transform: translate(-50%,-50%) scale(1);}
}
@keyframes rainbow
{
14% {stroke: rgb(255, 0, 0);}
28% {stroke: rgb(255, 255, 0);}
42% {stroke: rgb(0, 255, 0);}
56% {stroke: rgb(0, 255, 255);}
70% {stroke: rgb(0, 100, 255);}
84% {stroke: rgb(255, 0, 255);}
100% {stroke: white;}
}