-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (47 loc) · 750 Bytes
/
style.css
File metadata and controls
56 lines (47 loc) · 750 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
50
51
52
53
54
55
56
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
margin: 40px;
line-height: 1.6;
background-color: #121212;
color: #e0e0e0;
}
h1,
h2 {
color: #ffffff;
}
pre {
background: #1e1e1e;
color: #ffffff;
padding: 10px;
border-radius: 5px;
overflow-x: auto;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: #1e1e1e;
color: #e0e0e0;
}
table,
th,
td {
border: 1px solid #333;
}
th,
td {
padding: 10px;
text-align: left;
}
th {
background: #333;
color: #ffffff;
}
a {
color: #1e90ff;
}