-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (79 loc) · 1.69 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
.animated {
animation-duration: 2s;
-webkit-animation-duration: 2s;
animation-fill-mode: none;
-webkit-animation-fill-mode: none;
animation-timing-function: linear;
-webkit-animation-timing-function: linear;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
}
@keyframes rotate {
0% {
transform-origin: center center;
transform: rotate(0) scale(1);
}
25% {
transform-origin: center center;
transform: rotate(180deg) scale(0.5);
}
50% {
transform-origin: center center;
transform: rotate(360deg) scale(0.1);
}
75% {
transform-origin: center center;
transform: rotate(540deg) scale(0.5);
}
100% {
transform-origin: center center;
transform: rotate(720deg) scale(1);
}
}
@-webkit-keyframes rotate {
0% {
webkit-transform-origin: center center;
webkit-transform: rotate(0) scale(1);
}
25% {
webkit-transform-origin: center center;
webkit-transform: rotate(180deg) scale(0.5);
}
50% {
webkit-transform-origin: center center;
webkit-transform: rotate(360deg) scale(0.1);
}
75% {
webkit-transform-origin: center center;
webkit-transform: rotate(540deg) scale(0.5);
}
100% {
webkit-transform-origin: center center;
webkit-transform: rotate(720deg) scale(1);
}
}
.rotate {
animation-name: rotate;
-webkit-animation-name: rotate;
}
html {
height: 100%;
}
body {
height: 100%;
font-family: 'Inconsolata', monospace;
color: #fff200;
background-color: #303030;
}
.container {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.container h1 {
/* height: 100%; */
text-align: center;
font-size: 10em;
margin: 0;
}