-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
116 lines (102 loc) · 1.65 KB
/
Copy pathstyle.scss
File metadata and controls
116 lines (102 loc) · 1.65 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
@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@300;500&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-weight: 300;
font-family: "Overpass", Courier, monospace;
-webkit-font-smoothing: antialiased;
color: white;
}
:root {
background-color: black;
}
body {
display: flex;
flex-direction: column;
align-items: center;
background-image: url("./public/dark.webp");
}
nav {
display: flex;
padding-top: 12px;
align-items: center;
justify-content: space-between;
height: 70px;
max-width: 1200px;
border-bottom: 1px solid #777;
width: 100%;
li {
list-style: none;
a {
text-decoration: none;
}
}
}
.hero {
display: flex;
justify-content: center;
align-items: center;
img {
object-position: center;
}
}
.container {
max-width: 1200px;
}
.notes {
display: flex;
flex-direction: column;
gap: 2rem;
margin: 4rem 0;
}
ul,
ol {
line-height: 220%;
margin-left: 2rem;
font-size: 18px;
}
.note {
display: flex;
flex-direction: column;
gap: 1rem;
.title {
font-family: "Overpass";
font-weight: 500;
font-size: 24px;
line-height: 33px;
letter-spacing: 0.02em;
}
.desc {
font-weight: 300;
line-height: 200%;
letter-spacing: 0.02em;
font-size: 18px;
}
a {
color: #1da1f2;
&:visited {
color: #1da1f2;
}
}
}
@media only screen and (max-width: 600px) {
nav {
padding: 0 2rem;
padding-top: 10px;
}
.hero {
img {
width: 100%;
height: 100%;
transform: scale(1.5);
}
}
.container {
padding: 2rem;
}
ul,
ol {
margin-left: 1rem;
}
}