-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprettier.css
75 lines (67 loc) · 1.24 KB
/
prettier.css
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
html, body {
font-size: 16pt;
font-family: 'Roboto', sans-serif;
line-height: 1.75;
font-weight: lighter;
transition: all 0.2s ease;
}
@media(max-width: 1024px) {
body {
font-size: smaller;
}
}
code, pre {
font-family: 'JetBrains Mono', monospace;
}
pre {
display: block;
overflow: scroll;
border-radius: 8px;
padding: 16px;
font-size: 14pt;
color: whitesmoke;
background-color: rgb(48,48,48);
box-shadow: 0 0 8px 0px rgb(0 0 0 / 50%);
}
pre:hover {
size: 101%;
}
body {
display: flex;
flex-direction: row;
width: 100vw;
margin: 0;
padding: 0;
align-items: flex-start;
justify-content: space-evenly;
}
.nav-bar {
width: 20vw;
padding: 16px;
}
#main-panel {
width: 64vw;
padding: 16px;
}
#main-panel table {
border: none;
padding: 8px;
border-radius: 8px;
box-shadow: 0 0 7px 0px rgb(0 0 0 / 25%);
}
#main-panel td {
border: none;
padding: 8px;
line-height: 2;
vertical-align: top;
}
#main-panel tr:nth-child(even) {
background-color: #f0f0f0;
border-radius: 4px;
}
button {
color: white;
background-color: black;
border-radius: 4px;
box-shadow: 0 0 7px 0px rgb(0 0 0 / 25%);
}