Skip to content

Commit 44b5a96

Browse files
authored
Update index.html
1 parent 3e25cbd commit 44b5a96

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

index.html

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
font-family: "Segoe UI", sans-serif;
1010
margin: 0;
1111
padding: 0;
12-
background-color: #fff8e1; /* zachte oranje achtergrond */
12+
background-color: #fff8e1;
1313
display: flex;
1414
flex-direction: column;
1515
height: 100vh;
1616
}
1717

1818
h1 {
1919
text-align: center;
20-
background-color: #ffc827; /* oranje kopbalk */
20+
background-color: #ffc827;
2121
color: black;
2222
padding: 12px 0;
2323
margin: 0;
@@ -55,6 +55,18 @@
5555
border-bottom-left-radius: 0;
5656
}
5757

58+
#stream-output {
59+
background-color: #fffde7;
60+
align-self: flex-start;
61+
margin: 0 16px 10px;
62+
padding: 10px 14px;
63+
border-radius: 10px;
64+
max-width: 75%;
65+
font-size: 15px;
66+
line-height: 1.4;
67+
white-space: pre-wrap;
68+
}
69+
5870
#input-form {
5971
display: flex;
6072
border-top: 1px solid #ccc;
@@ -91,12 +103,14 @@
91103
<h1>Indicatiehulp.ai</h1>
92104

93105
<div id="chat"></div>
106+
<div id="stream-output"></div>
94107

95108
<form id="input-form">
96109
<input type="text" id="user-input" placeholder="Typ je bericht..." autocomplete="off" />
97110
<button type="submit">Verstuur</button>
98111
</form>
99112

113+
<script src="https://cdnjs.cloudflare.com/ajax/libs/microsoft-signalr/7.0.5/signalr.min.js"></script>
100114
<script src="script.js"></script>
101115

102116
</body>

0 commit comments

Comments
 (0)