-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (59 loc) · 1.19 KB
/
style.css
File metadata and controls
60 lines (59 loc) · 1.19 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
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
body {
margin: 0;
font-family: "JetBrains Mono", monospace;
letter-spacing: -1px;
padding: 0;
}
.header {
padding: 2rem 2rem;
max-width: 980px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 2;
}
.header .links {
display: flex;
justify-content: space-between;
align-items: center;
}
.header .links p a {
margin: 0rem 1rem;
font-weight: bold;
color: #121212;
}
.header .logo h6 {
color: #3d84e0;
}
.main {
padding: 1rem 2rem;
justify-content: center;
max-width: 980px;
margin: 0 auto;
}
.main .section {
margin: 2rem 0rem;
}
.main .section .container .tags {
color: #3d84e0;
margin: 2rem 0rem;
}
.main .section .container .codebox {
margin: 1rem 0rem;
padding: 0.875rem 2rem;
background-color: #d3d3d3;
justify-content: center;
}
.main .section .container .warning{
padding: 0.875rem 1rem;
background-color: #ffe3c2;
color:#683e0d;
}
.main .section .container p a {
color: #3d84e0;
}
.footer {
padding: 2rem;
}