-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
70 lines (56 loc) · 1.13 KB
/
app.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
#root {
display: flex;
flex-direction: column;
width: 100%;
min-height: 100vh;
}
.sidebar {
width: 280px;
background: #1f033f;
background-image: var(--bs-gradient);
}
.sidebar .nav-link.active {
/*background: #16012e;*/
background: rgba(0, 0, 0, 0.5);
}
.main {
display: flex;
flex-wrap: nowrap;
flex-grow: 1;
overflow-x: auto;
overflow-y: hidden;
}
[data-bs-theme=light] .welcome {
color: black;
}
[data-bs-theme=light] .welcome .btn {
color: black;
}
[data-bs-theme=dark] .welcome {
color: white;
}
[data-bs-theme=dark] .welcome .btn {
color: white;
}
[data-bs-theme=light] .message {
background-color: var(--bs-gray-100);
}
[data-bs-theme=dark] .message {
background-color: var(--bs-gray-800);
}
.markdown pre {
border-radius: 4px;
padding: 0.5em;
width: 75%;
overflow-x: scroll;
}
[data-bs-theme=light] .markdown pre {
background-color: var(--bs-gray-200);
}
[data-bs-theme=dark] .markdown pre {
background-color: var(--bs-gray-700);
}
.markdown blockquote {
border-left: solid 0.2em var(--bs-gray-500);
padding-left: 0.5em;
}