forked from AugurProject/augur-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
splash.css
58 lines (54 loc) · 1.08 KB
/
splash.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
html,
body,
#app,
#splash {
height: 100%;
width: 100%;
margin: 0;
}
#splash {
background: #efefef;
color: #f5f5f5;
display: block;
height: 100%;
left: 0;
overflow: hidden;
position: relative;
top: 0;
width: 100%;
}
#splash-text {
animation-direction: alternate;
animation-duration: 10s;
animation-iteration-count: infinite;
animation-name: splash-anim;
animation-timing-function: cubic-bezier(0.11, 0.63, 0.25, 0.89);
background-image: url('../../assets/images/augur_logo_200_white.png');
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
bottom: 0;
color: #fbfbfb;
display: inline-block;
font-family: Impact, "Arial Black", "Avant Garde", Charcoal, sans-serif;
font-size: 20vh;
font-weight: 700;
height: 50px;
left: 0;
margin: auto;
overflow: hidden;
position: absolute;
right: 0;
text-align: center;
text-shadow: 0 0 50px #e9e9e9;
top: 0;
width: 50px;
}
@keyframes splash-anim {
0% {
transform: scale(1) rotate(0deg);
}
100% {
transform: scale(4) rotate(3deg);
}
}