-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (92 loc) · 2.21 KB
/
style.css
File metadata and controls
106 lines (92 loc) · 2.21 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
body {
color: #233138;
font-family: 'roboto', sans-serif;
font-weight: 100;
font-size: 1.6rem;
margin: 0;
padding: 0;
display: block;
}
.home {
opacity: 1;
position: relative;
background-image: url(http://weathertoride.io/assets/img/weather-to-ride-promo-fade.jpg);
background-size: cover;
background-color: rgb(255, 255, 255);
background-size: cover;
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
padding: 0;
margin: 0;
height: 100vh;
width: 100%;
max-width: none;
overflow: hidden;
}
.home_content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
margin: auto;
max-width: 400px;
width: 100%;
}
.home_heading {
opacity: 1;
transform: matrix(1,0,0,1,0,0);
margin: 0;
height: 113px;
width: 220px;
display: block;
font-size: 0;
background-image: url(http://weathertoride.io/assets/img/weather-to-ride-logo.svg);
}
.home_intro {
display: block;
padding-top: 1em;
font-weight: 100;
}
p {
margin-bottom: 2em;
margin: 2px;
padding: 0;
}
.home_down {
animation-name: bounce;
animation-duration: 1s;
animation-delay: 0s;
animation-iteration-count: infinite;
position: absolute;
bottom: 20px;
left: 50%;
margin-left: -60px;
width: 120px;
padding-bottom: 20px;
font-size: 16px;
box-sizing: inherit;
background-image: url(http://weathertoride.io/assets/img/icon-down.svg);
background-position-x: center;
background-position-y: bottom;
background-size: initial;
background-repeat-x: no-repeat;
background-repeat-y: no-repeat;
background-attachment: initial;
background-origin: initial;
background-clip: initial;
background-color: transparent;
}
@keyframes bounce {
0% {transform: translate3d(0, 0, 0);}
89% {transform: translate3d(0, 0, 0);}
90% {transform: translate3d(0, 10px, 0);}
92% {transform: translate3d(0, -7px, 0);}
94% {transform: translate3d(0, 5px, 0);}
96% {transform: translate3d(0, -2px, 0);}
98% {transform: translate3d(0, 2px, 0);}
100% {transform: none;}
}