-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.css
More file actions
124 lines (122 loc) · 2.3 KB
/
Copy pathdefault.css
File metadata and controls
124 lines (122 loc) · 2.3 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
* {
margin: 0;
padding: 0;
box-sizing: border-box
}
body {
width: 100vw;
height: 100vh;
overflow: hidden;
padding: 20px;
padding-top: 20px
}
body>* {
transition: opacity .3s ease-in-out
}
body.loading>* {
opacity: 0
}
.align-content-center-vertical {
height: 100%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column
}
.text-align-center {
text-align: center
}
.color-dark {
background-color: #181818
}
.color-dark .content {
color: #ddd
}
.background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
background-repeat: no-repeat;
background-size: cover;
background-position: 50%
}
.highlight {
background-color: black;
padding: 0px 10px;
}
.content {
position: relative;
font-family: Montserrat, Helvetica, Arial, sans-serif;
width: 100%
}
.content h1 {
display: inline-block;
font-size: 100px;
font-weight: 100;
line-height: 1em;
margin-bottom: .25em
}
.content p {
display: inline-block;
font-size: 14px;
font-weight: 300;
line-height: 1.4em
}
.footer {
position: absolute;
bottom: 44px;
width: calc(100% - 40px)
}
@media (max-width: 455px) {
.content h1 {
font-size: 60px
}
.content p {
font-size: 13px
}
.content .line-break {
display: block
}
}
/* To remove on mobile when ios or android doesnt catch */
@media screen and (max-width:480px) {
.video-background .background-video {
display: none !important;
}
}
@media (max-height: 375px) {
.align-content-center-vertical {
display: block
}
}
.video-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
overflow: hidden;
opacity: 0.5;
}
.video-background .background-video {
position: relative;
left: 50%;
transform: translatex(-50%);
display: inline-block;
}
.video-background .default-fallback-image {
width: 100vw;
height: 100%;
background-position: center center;
background-image: url(./assets/Let-It-Grow/Let-It-Grow.jpg);
min-height: 1080;
}