-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (56 loc) · 1.22 KB
/
Copy pathstyle.css
File metadata and controls
56 lines (56 loc) · 1.22 KB
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
:root {
--bg: #000;
--fg: #f5f5f7;
--fg-user: #fff;
--btn-bg: #1d1d1f;
--btn-bg-hover: #2a2a2c;
--radius: 10px;
--shadow: 0 4px 12px rgba(0,0,0,0.4);
}
html, body {
margin: 0;
background: var(--bg);
color: var(--fg);
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}
.container { padding: 20px; }
.msg-user, .msg-pc { margin-bottom: 10px; }
.msg-pc {
background: #2f2f2f;
padding: 10px 14px;
border-radius: var(--radius);
max-width: 80%;
}
.msg-user {
background: #007aff;
color: var(--fg-user);
padding: 10px 14px;
border-radius: var(--radius);
max-width: 80%;
margin-left: auto;
white-space: pre-line;
}
.form-block { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.input {
flex: 1;
font-size: 24px;
padding: 20px 24px;
color: var(--fg);
background: #0b0b0c;
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--radius);
outline: none;
box-shadow: none;
}
.btn-send {
padding: 20px;
font-size: 22px;
font-weight: 600;
color: var(--fg);
background: var(--btn-bg);
border: none;
border-radius: var(--radius);
box-shadow: var(--shadow);
cursor: pointer;
}
.btn-send:hover { background: var(--btn-bg-hover); }