-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyles.css
More file actions
123 lines (101 loc) · 1.81 KB
/
Copy pathstyles.css
File metadata and controls
123 lines (101 loc) · 1.81 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
:root {
--clr-primary: white;
--clr-fade: #c8c8c8;
--clr-bg: #1a1a1a;
--fs-xl: clamp(3.5rem, 3vw + 1rem, 12rem);
--fs-heading: 1.25rem;
--fs-body: 1rem;
}
* {
margin: 0px;
background-color: var(--clr-bg);
font-family: "Poppins";
}
body {
padding: 0px 8.5%;
}
a {
color: #ffffff;
text-decoration: none;
}
.body {
margin: 0 auto;
max-width: 50rem;
padding: 6.25rem 17%;
}
/* FONTS */
.headline {
font-size: var(--fs-xl);
color: var(--clr-primary);
font-weight: 500;
line-height: 118%;
margin-bottom: 2.5rem;
}
.bodyText {
font-size: var(--fs-body);
color: var(--clr-primary);
font-weight: 400;
}
.bodyTextFaded {
font-size: var(--fs-body);
color: var(--clr-fade);
font-weight: 400;
}
.heading {
font-size: var(--fs-heading);
color: var(--clr-primary);
margin-bottom: 1.25rem;
/* font-weight: 500; */
}
.headingNopadding {
font-size: var(--fs-heading);
color: var(--clr-primary);
/* margin-bottom: 1.25rem; */
}
.subHeadline {
margin-bottom: 5rem;
font-size: var(--fs-body);
color: var(--clr-fade);
}
/* MAIN CSS */
.navbar {
position: sticky;
max-width: 100rem;
padding: 1.5rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
margin: 0 auto;
}
.logo {
color: var(--clr-primary);
display: inline-block;
}
.buttons {
float: right;
}
.navbarButton {
margin-left: 0.5rem;
}
span {
color: #a772ff;
}
input {
border: 0;
outline: 0;
background: transparent;
border-bottom: 1px solid #a1a1a1;
display: block;
width: 465px;
margin-top: 32px;
}
.button {
margin-top: 60px;
width: 465px;
height: 50px;
background: #383838;
border-radius: 8px;
color: white;
text-align: center;
vertical-align: middle;
line-height: 50px;
}