File size: 1,123 Bytes
082d9d1
 
c2bbbd3
 
 
 
 
 
 
 
 
 
 
 
 
 
082d9d1
 
 
 
 
 
 
c2bbbd3
082d9d1
 
 
c2bbbd3
082d9d1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c2bbbd3
082d9d1
 
 
 
 
 
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
/* Basic styling for the coder application */

:root {
    --text-color: #333;
    --bg-color: #f5f5f5;
    --html-bg: white;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e0e0e0;
        --bg-color: #2d2d2d;
        --html-bg: #1e1e1e;
    }
}

.left_header {
    text-align: center;
    margin-bottom: 20px;
}

.left_header h1 {
    margin-top: 10px;
    color: var(--text-color);
}

.right_panel {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.render_header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.header_btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.header_btn:nth-child(2) {
    background: #ffbd2e;
}

.header_btn:nth-child(3) {
    background: #27ca3f;
}

.right_content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 800px;
}

.html_content {
    width: 100%;
    height: 920px;
    border: none;
    border-radius: 8px;
    background: var(--html-bg);
}

.history_chatbot {
    max-height: 960px;
    overflow-y: auto;
}