-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (77 loc) · 1.26 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
:root {
--animationDuration: 1.8s;
}
.size {
width: 50vw;
height: calc(0.29 * 50vw);
max-width: 329px;
max-height: 98px;
}
.first {
z-index: 100;
}
.second {
z-index: 98;
}
.third {
z-index: 97;
}
.logo {
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.front {
background-image: url('totvs-icon-front.svg');
}
.bg-1 {
background-image: url('totvs-icon-bg-1.svg');
}
.bg-2 {
background-image: url('totvs-icon-bg-2.svg');
}
@keyframes pulse {
0%, 20%, 40%, 100% {
transform: scale(1);
}
15%, 35% {
transform: scale(1.3);
}
}
.pulse {
animation-duration: var(--animationDuration);
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.pulse.normal {
animation-name: pulse;
}
@keyframes pulse-left {
0%, 20%, 40%, 100% {
transform: scale(1);
}
15%, 35% {
transform: scale(1.3) translate(-1.5%);
}
}
.pulse.left {
animation-name: pulse-left;
}
@keyframes pulse-right {
0%, 20%, 40%, 100% {
transform: scale(1);
}
15%, 35% {
transform: scale(1.3) translate(1.5%);
}
}
.pulse.right {
animation-name: pulse-right;
}
.center {
position: absolute;
margin: 0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}