blob: 97759b8aebc212d79bc498203b0a12ce36375f38 (
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
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
|
@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;
outline: none;
border-color: var(--cru-background-2-color);
}
textarea:hover {
border-color: var(--cru-primary-r2-color);
}
textarea:focus {
border-color: var(--cru-primary-color);
}
input:not([type="checkbox"]):not([type="radio"]) {
resize: none;
outline: none;
border: 1px solid;
transition: all 0.5s;
border-color: var(--cru-background-2-color);
}
input:hover:not([type="checkbox"]):not([type="radio"]) {
border-color: var(--cru-primary-r2-color);
}
input:focus:not([type="checkbox"]):not([type="radio"]) {
border-color: var(--cru-primary-color);
}
.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;
}
|