-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (42 loc) · 659 Bytes
/
style.css
File metadata and controls
49 lines (42 loc) · 659 Bytes
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
html {
overflow-x: hidden;
}
html,
body {
margin: 0;
padding: 0;
background: #161616;
color: #fff;
font-family: "Neue Machina";
}
body {
overflow: hidden;
width: 100%;
}
.smooth-scroll-wrapper {
position: fixed;
z-index: 2;
top: 0;
left: 0;
overflow: hidden;
}
.content {
width: 80%;
margin: 160px auto;
}
h1 {
font-size: 80px;
}
p {
font-size: 24px;
line-height: 40px;
font-weight: 200;
color: rgba(255, 255, 255, 0.6);
}
.img {
width: 100%;
height: 300px;
background: url(hero-img.jpg) no-repeat 50% 50%;
background-size: cover;
margin: 40px auto;
}