Delete app.css
Browse files
app.css
DELETED
@@ -1,190 +0,0 @@
|
|
1 |
-
.left_header {
|
2 |
-
display: flex;
|
3 |
-
flex-direction: column;
|
4 |
-
justify-content: center;
|
5 |
-
align-items: center;
|
6 |
-
}
|
7 |
-
|
8 |
-
.render_header {
|
9 |
-
height: 30px;
|
10 |
-
width: 100%;
|
11 |
-
padding: 5px 16px;
|
12 |
-
background-color: #f5f5f5;
|
13 |
-
margin-top: 50px;
|
14 |
-
}
|
15 |
-
|
16 |
-
.header_btn {
|
17 |
-
display: inline-block;
|
18 |
-
height: 10px;
|
19 |
-
width: 10px;
|
20 |
-
border-radius: 50%;
|
21 |
-
margin-right: 4px;
|
22 |
-
}
|
23 |
-
|
24 |
-
.render_header > .header_btn:nth-child(1) {
|
25 |
-
background-color: #f5222d;
|
26 |
-
}
|
27 |
-
|
28 |
-
.render_header > .header_btn:nth-child(2) {
|
29 |
-
background-color: #faad14;
|
30 |
-
}
|
31 |
-
|
32 |
-
.render_header > .header_btn:nth-child(3) {
|
33 |
-
background-color: #52c41a;
|
34 |
-
}
|
35 |
-
|
36 |
-
.right_content {
|
37 |
-
height: 920px;
|
38 |
-
display: flex;
|
39 |
-
flex-direction: column;
|
40 |
-
justify-content: center;
|
41 |
-
align-items: center;
|
42 |
-
}
|
43 |
-
|
44 |
-
.history_chatbot button {
|
45 |
-
background: none;
|
46 |
-
border: none;
|
47 |
-
}
|
48 |
-
|
49 |
-
footer, .footer, div[class*="footer"], #footer {
|
50 |
-
display: none !important;
|
51 |
-
}
|
52 |
-
|
53 |
-
#component-0 textarea,
|
54 |
-
.gradio-container textarea,
|
55 |
-
.ant-input-textarea-large textarea {
|
56 |
-
height: 300px !important;
|
57 |
-
min-height: 300px !important;
|
58 |
-
resize: vertical !important;
|
59 |
-
}
|
60 |
-
|
61 |
-
.setting-buttons {
|
62 |
-
position: absolute;
|
63 |
-
top: 0;
|
64 |
-
right: 0;
|
65 |
-
z-index: 1000;
|
66 |
-
display: flex;
|
67 |
-
gap: 8px;
|
68 |
-
padding: 10px;
|
69 |
-
background-color: white;
|
70 |
-
}
|
71 |
-
|
72 |
-
.right_panel {
|
73 |
-
position: relative;
|
74 |
-
min-height: 600px;
|
75 |
-
padding-top: 50px;
|
76 |
-
}
|
77 |
-
|
78 |
-
.html_content {
|
79 |
-
height: 100%;
|
80 |
-
}
|
81 |
-
|
82 |
-
.ant-btn {
|
83 |
-
flex: 1;
|
84 |
-
min-width: 80px;
|
85 |
-
}
|
86 |
-
|
87 |
-
.ant-btn-primary {
|
88 |
-
background-color: #1890ff;
|
89 |
-
}
|
90 |
-
|
91 |
-
.ant-btn-default:hover {
|
92 |
-
color: #1890ff;
|
93 |
-
border-color: #1890ff;
|
94 |
-
}
|
95 |
-
|
96 |
-
.ant-btn-default[title="Code 실행"] {
|
97 |
-
background-color: #52c41a;
|
98 |
-
color: white;
|
99 |
-
border: none;
|
100 |
-
}
|
101 |
-
|
102 |
-
.ant-btn-default[title="Code 실행"]:hover {
|
103 |
-
background-color: #73d13d;
|
104 |
-
}
|
105 |
-
|
106 |
-
.session-drawer .chatbot {
|
107 |
-
height: calc(100vh - 200px);
|
108 |
-
overflow-y: auto;
|
109 |
-
}
|
110 |
-
|
111 |
-
.session-history {
|
112 |
-
height: 700px;
|
113 |
-
overflow-y: auto;
|
114 |
-
}
|
115 |
-
|
116 |
-
.prompt-grid {
|
117 |
-
display: grid;
|
118 |
-
grid-template-columns: repeat(3, 1fr);
|
119 |
-
gap: 20px;
|
120 |
-
padding: 20px;
|
121 |
-
}
|
122 |
-
|
123 |
-
.prompt-card {
|
124 |
-
background: white;
|
125 |
-
border: 1px solid #eee;
|
126 |
-
border-radius: 8px;
|
127 |
-
padding: 15px;
|
128 |
-
cursor: pointer;
|
129 |
-
transition: all 0.3s ease;
|
130 |
-
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
131 |
-
min-height: 300px;
|
132 |
-
}
|
133 |
-
|
134 |
-
.prompt-card:hover {
|
135 |
-
transform: translateY(-2px);
|
136 |
-
box-shadow: 0 4px 10px rgba(0,0,0,0.15);
|
137 |
-
}
|
138 |
-
|
139 |
-
.card-image {
|
140 |
-
width: 100%;
|
141 |
-
height: 200px;
|
142 |
-
object-fit: cover;
|
143 |
-
border-radius: 4px;
|
144 |
-
margin-bottom: 10px;
|
145 |
-
}
|
146 |
-
|
147 |
-
.card-name {
|
148 |
-
font-weight: bold;
|
149 |
-
margin-bottom: 8px;
|
150 |
-
font-size: 16px;
|
151 |
-
}
|
152 |
-
|
153 |
-
.card-prompt-container {
|
154 |
-
position: relative;
|
155 |
-
padding-right: 60px;
|
156 |
-
}
|
157 |
-
|
158 |
-
.card-prompt {
|
159 |
-
font-size: 0.9em;
|
160 |
-
color: #666;
|
161 |
-
display: -webkit-box;
|
162 |
-
-webkit-line-clamp: 3;
|
163 |
-
-webkit-box-orient: vertical;
|
164 |
-
overflow: hidden;
|
165 |
-
}
|
166 |
-
|
167 |
-
.copy-btn {
|
168 |
-
position: absolute;
|
169 |
-
right: 0;
|
170 |
-
top: 0;
|
171 |
-
padding: 4px 8px;
|
172 |
-
background: #f0f0f0;
|
173 |
-
border: 1px solid #ddd;
|
174 |
-
border-radius: 4px;
|
175 |
-
cursor: pointer;
|
176 |
-
font-size: 0.9em;
|
177 |
-
transition: all 0.2s ease;
|
178 |
-
}
|
179 |
-
|
180 |
-
.copy-btn:hover {
|
181 |
-
background: #e0e0e0;
|
182 |
-
}
|
183 |
-
|
184 |
-
.copy-btn:active {
|
185 |
-
background: #d0d0d0;
|
186 |
-
}
|
187 |
-
|
188 |
-
.template-buttons {
|
189 |
-
margin-top: 10px;
|
190 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|