-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (65 loc) · 1.67 KB
/
style.css
File metadata and controls
74 lines (65 loc) · 1.67 KB
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
@font-face {
font-family: 'league_gothicregular';
src: url('leaguegothic-regular-webfont.eot');
src: url('leaguegothic-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('leaguegothic-regular-webfont.woff') format('woff'),
url('leaguegothic-regular-webfont.ttf') format('truetype'),
url('leaguegothic-regular-webfont.svg#league_gothicregular') format('svg');
font-weight: normal;
font-style: normal;
}
a {
text-decoration: none;
color: #eb0808;
}
footer {
opacity: 0.3;
text-align: center;
}
.animate-enter,
.animate-leave
{
-webkit-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
-moz-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
-ms-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
-o-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
position: relative;
display: block;
overflow: hidden;
text-overflow: clip;
white-space:nowrap;
}
.animate-leave.animate-leave-active,
.animate-enter {
opacity: 0;
width: 0px;
height: 0px;
}
.animate-enter.animate-enter-active,
.animate-leave {
opacity: 1;
width: 150px;
height: 30px;
}
.wrapper {
height: 600px;
text-align: center; word-wrap: normal;
margin-right: auto;
margin-left: auto;
font-family: 'league_gothicregular';
color: #eb0808;
font-size: 120px;
}
.wrapper:before {
content: "";
display: inline-block;
height: 100%;
vertical-align: middle;
}
.inner {
display: inline-block;
padding: 10px 15px;
vertical-align: middle;
width: 600px;
}