-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (42 loc) · 841 Bytes
/
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
h1 {
background-color: white;
mix-blend-mode: screen;
}
@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:700");
html,
body{
margin:0
}
main {
overflow: hidden;
}
.bg {
background-image: url("https://cdn.pixabay.com/photo/2017/04/27/07/26/rock-climbing-2264698_960_720.jpg");
background-position: 0% 50%;
background-repeat: no-repeat;
background-size: cover;
width: 100vw;
height: 100vh;
display: flex;
}
h1 {
font-family: "Open Sans Condensed", sans-serif;
font-size: calc(5rem + 10vw);
font-weight: 700;
letter-spacing: -0.5rem;
line-height: 0.8;
margin: 1%;
padding: 5%;
text-align: right;
text-transform: uppercase;
}
.content {
box-sizing: border-box;
}
@media (min-width: 40em) {
.content {
padding-left: 5rem;
padding-right: 5rem;
width: 50vw;
}
}