-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (44 loc) · 700 Bytes
/
style.css
File metadata and controls
45 lines (44 loc) · 700 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
body {
font-family: "Inter", sans-serif;
margin: 0;
padding: 150px 415px;
}
header {
position: fixed;
top: 0;
background-color: #fff;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 0;
}
.accent {
color: royalblue;
font-weight: bold;
}
.topic {
font-style: italic;
font-family: "Times New Roman", Times, serif;
font-size: 28px;
}
#icon {
width: 30px;
height: 30px;
margin-left: 370px;
}
p {
margin: 35px 0;
font-size: 18px;
line-height: 1.75;
}
.code-snippet {
background-color: #f4f4f4;
padding: 19px;
}
.code-text {
font-family: "Courier New", Courier, monospace;
font-size: 14px;
margin: 20px 0;
}