diff options
Diffstat (limited to 'src/css/index.css')
-rw-r--r-- | src/css/index.css | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/src/css/index.css b/src/css/index.css new file mode 100644 index 0000000..adc1cfe --- /dev/null +++ b/src/css/index.css | |||
@@ -0,0 +1,80 @@ | |||
1 | body { | ||
2 | display: flex; | ||
3 | justify-items: stretch; | ||
4 | } | ||
5 | |||
6 | .result-html { | ||
7 | flex: 1; | ||
8 | height: calc(100vh - 20px); | ||
9 | border: solid lightgray 2px; | ||
10 | border-radius: 5px; | ||
11 | margin: 10px; | ||
12 | } | ||
13 | |||
14 | .editor { | ||
15 | flex: 1; | ||
16 | max-width: 50vw; | ||
17 | margin: 10px; | ||
18 | } | ||
19 | |||
20 | .TinyMDE { | ||
21 | height: calc(100vh - 55px); | ||
22 | padding: 16px; | ||
23 | overflow-y: scroll; | ||
24 | border: 2px solid lightgray; | ||
25 | border-radius: 5px; | ||
26 | |||
27 | span { | ||
28 | white-space: pre; | ||
29 | } | ||
30 | .invalid-input { | ||
31 | text-decoration: red wavy underline 1px; | ||
32 | } | ||
33 | } | ||
34 | |||
35 | .container__suggestions { | ||
36 | display: none; | ||
37 | position: absolute; | ||
38 | width: fit-content; | ||
39 | min-width: 10rem; | ||
40 | max-height: 40vh; | ||
41 | overflow-y: scroll; | ||
42 | border: 2px solid lightgray; | ||
43 | border-radius: 0.5rem; | ||
44 | |||
45 | background: #fff; | ||
46 | } | ||
47 | .container__suggestion { | ||
48 | cursor: pointer; | ||
49 | display: flex; | ||
50 | justify-content: space-between; | ||
51 | overflow: hidden; | ||
52 | |||
53 | height: fit-content; | ||
54 | min-height: 2rem; | ||
55 | white-space: nowrap; | ||
56 | align-items: center; | ||
57 | |||
58 | * { | ||
59 | flex-shrink: 0; | ||
60 | display: inline-block; | ||
61 | overflow: hidden; | ||
62 | padding-inline: 1em; | ||
63 | } | ||
64 | .info { | ||
65 | color: #4682B4; | ||
66 | font-weight: bold; | ||
67 | } | ||
68 | .truncate { | ||
69 | text-overflow: ellipsis; | ||
70 | ::before { | ||
71 | width: 2rem | ||
72 | } | ||
73 | } | ||
74 | } | ||
75 | .container__suggestion:not(:first-child) { | ||
76 | border-top: 1px solid rgb(203 213 225); | ||
77 | } | ||
78 | .container__suggestion.focus { | ||
79 | background: rgb(226 232 240); | ||
80 | } | ||