pdufour commited on
Commit
842a8c8
·
verified ·
1 Parent(s): ce93a2e

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +24 -1
style.css CHANGED
@@ -99,4 +99,27 @@
99
  #container {
100
  padding: 1.5rem;
101
  }
102
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  #container {
100
  padding: 1.5rem;
101
  }
102
+ }
103
+
104
+ #llm-output {
105
+ font-family: 'IBM Plex Mono', 'Courier New', monospace;
106
+ background: #282c34;
107
+ color: #abb2bf;
108
+ border-radius: 8px;
109
+ padding: 1.5rem;
110
+ margin: 1.5rem auto;
111
+ max-width: 800px;
112
+ min-height: 100px;
113
+ max-height: 400px;
114
+ overflow-y: auto;
115
+ line-height: 1.6;
116
+ white-space: pre-wrap;
117
+ word-break: break-word;
118
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
119
+ }
120
+
121
+ #llm-output:empty::after {
122
+ content: "Waiting for response...";
123
+ color: #5c6370;
124
+ font-style: italic;
125
+ }