forked from CSCIClub/CSCIClub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
47 lines (44 loc) · 816 Bytes
/
main.css
File metadata and controls
47 lines (44 loc) · 816 Bytes
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
.monti {
display: block;
margin-left: auto;
margin-right: auto;
animation-duration: 2s;
animation-name: spin;
animation-iteration-count: infinite;
animation-direction: alternate;
}
.logo {
display: block;
margin-left: auto;
margin-right: auto;
animation-duration: 2s;
animation-name: spin2;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes spin {
0% {
transform: scale( 0.1 );
opacity: 0;
}
60% {
transform: scale( 1.2 );
transform: rotate(20deg);
opacity: 1;
}
100% {
transform: scale( 1 );
transform: rotate(40deg);
}
}
@keyframes spin2 {
0% {
transform: rotate( 360deg ) scale( 1 );
}
50% {
transform: rotate( 180deg ) scale( 2 );
}
100% {
transform: rotate( 0deg ) scale( 1 );
}
}