-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (71 loc) · 1.46 KB
/
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
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
/* Importing the Poppins font using google's cdn */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
/* Styling for the Body */
body {
overflow-x: hidden;
scroll-behavior: smooth;
}
/* Styling for the scroll bar */
::-webkit-scrollbar {
/* width: 0; */
width: .60rem;
background-color: hsl(0, 0%, 3%);
/* border-radius: .5rem; */
}
::-webkit-scrollbar-thumb {
background-color: hsl(0, 11%, 26%);
border-radius: .5rem;
}
::-webkit-scrollbar-thumb:hover {
background-color: #0000;
}
.main-parallax {
position: absolute;
height: 100%;
}
.plx-comp {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.p-comp1 {
background: url(img/m_1.png) center/cover no-repeat;
}
.p-comp3 {
background: url(img/m_3.png) bottom/100% no-repeat;
background-size: cover;
background-position: center;
z-index: 2;
}
.container {
position: relative;
z-index: 1;
max-width: 1140px;
margin: 0 auto;
margin-top: 100vh;
}
.content-header {
font-family: "poppins", sans-serif;
color: #fff;
text-align: center !important;
text-transform: uppercase;
}
.content-header h1 {
font-size: 90px;
font-weight: 600;
color: #fff;
margin-bottom: -40px;
}
.content-header h2 {
font-size: 26px;
margin-top: 2em;
font-weight: 500;
color: #fff;
}
.content {
width: 200px;
height: auto;
margin-right: 40px;
}