blob: 14f0bc43e90ac09e80b188a8e633bcb7bec90175 (
plain)
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
|
@import "bootstrap/dist/css/bootstrap-reboot.css";
@import "bootstrap/dist/css/bootstrap-grid.css";
@import "bootstrap-icons/font/bootstrap-icons.css";
@import "./views/common/index.css";
body {
background: var(--cru-background-color);
}
small {
line-height: 1.2;
}
.flex-fix-length {
flex-grow: 0;
flex-shrink: 0;
}
.cursor-pointer {
cursor: pointer;
}
textarea {
resize: none;
}
.white-space-no-wrap {
white-space: nowrap;
}
.full-viewport-center-child {
position: fixed;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.touch-action-none {
touch-action: none;
}
i {
line-height: 1;
}
.markdown-container {
white-space: initial;
}
.markdown-container img {
max-height: 200px;
max-width: 100%;
}
a {
text-decoration: none;
}
|