-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (77 loc) · 1.57 KB
/
Copy pathstyle.css
File metadata and controls
89 lines (77 loc) · 1.57 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
@import url("https://fonts.googleapis.com/css2?family=Cutive+Mono&family=Poppins:wght@200&display=swap");
body {
font-family: "Poppins", sans-serif;
font-size: 1rem;
font-weight: 200;
line-height: 1.5;
margin: 0;
padding: 1.5rem;
background-color: #c7ecee;
}
pre {
font-family: "Cutive Mono", monospace;
font-size: 1rem;
line-height: 1.25rem;
/* background-color: #0a3d62; */
background-color: #22a6b3;
color: #f6e58d;
border: 1px solid white;
padding: 1rem;
overflow: auto;
max-height: 60vh;
max-width: calc(100% - 3rem);
}
pre {
--sb-track-color: #22a6b3;
--sb-thumb-color: #077f9d;
--sb-size: 10px;
}
pre::-webkit-scrollbar {
width: var(--sb-size);
height: var(--sb-size);
}
pre::-webkit-scrollbar-track {
background: var(--sb-track-color);
border-radius: 3px;
}
pre::-webkit-scrollbar-thumb {
background: var(--sb-thumb-color);
border-radius: 3px;
}
@supports not selector(::-webkit-scrollbar) {
pre {
scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
}
}
#status {
font-size: 1.25rem;
font-weight: 200;
font-style: italic;
margin: 2rem 0 0;
}
h1 {
font-family: "Poppins", sans-serif;
font-weight: 200;
margin: 0 0 1rem;
}
nav {
display: flex;
flex-wrap: wrap;
justify-content: start;
gap: 0.35rem;
max-width: 50rem;
}
button {
font-family: "Poppins", sans-serif;
font-size: 1rem;
font-weight: 200;
padding: 0.5rem 1rem;
border: 1px solid #22a6b3;
border-radius: 5px;
background-color: #fff;
cursor: pointer;
}
button:hover {
background-color: #dff9fb;
color: #187e87;
}