0
|
1 * {
|
|
2 box-sizing: border-box;
|
|
3 }
|
|
4
|
|
5 body {
|
|
6 font-family: Sans-Serif;
|
|
7 margin: 0;
|
|
8 }
|
|
9
|
|
10 a {
|
|
11 text-decoration: none;
|
|
12 }
|
|
13 a:hover {
|
|
14 text-decoration: underline;
|
|
15 }
|
|
16
|
|
17 [content] {
|
|
18 margin-left: 3%;
|
|
19 margin-right: 3%;
|
|
20 margin-bottom: 2em;
|
|
21 }
|
1
|
22
|
|
23 [waiting-ai-icon] {
|
|
24 width: 100px;
|
|
25 position: absolute;
|
|
26 top: 50%;
|
|
27 left: 50%;
|
|
28 transform: translate(-50%,-50%);
|
|
29 z-index: 3000;
|
|
30 display: none;
|
|
31 }
|
|
32
|
|
33 [ai_container] div[ask] {
|
|
34 padding-top: 1em;
|
|
35 padding-bottom: 1em;
|
|
36 padding-left: 12px;
|
|
37 padding-right: 12px;
|
|
38 display: flex;
|
|
39 gap: 8px;
|
|
40 align-items: flex-end;
|
|
41 }
|
|
42 [ai_container] textarea {
|
|
43 flex-grow: 1;
|
|
44 max-height: 150px;
|
|
45 resize: none;
|
|
46 }
|