Skip to content

Commit da3fefb

Browse files
authored
Update index.html
1 parent 50fcc55 commit da3fefb

File tree

1 file changed

+49
-47
lines changed

1 file changed

+49
-47
lines changed

index.html

Lines changed: 49 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -2,102 +2,104 @@
22
<html lang="nl">
33
<head>
44
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>AI Indicatiehulp</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
6+
<title>Indicatiehulp.ai</title>
77
<style>
88
body {
9-
font-family: Arial, sans-serif;
10-
background-color: #fff8e1;
9+
font-family: "Segoe UI", sans-serif;
1110
margin: 0;
1211
padding: 0;
12+
background-color: #fff8e1; /* zachte oranje achtergrond */
1313
display: flex;
1414
flex-direction: column;
1515
height: 100vh;
1616
}
1717

18-
header {
19-
background-color: #ffc827;
20-
padding: 1rem;
18+
h1 {
2119
text-align: center;
22-
font-weight: bold;
23-
font-size: 1.2rem;
24-
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
20+
background-color: #ffc827; /* oranje kopbalk */
21+
color: black;
22+
padding: 12px 0;
23+
margin: 0;
24+
font-size: 20px;
2525
}
2626

27-
#messages {
27+
#chat {
2828
flex-grow: 1;
2929
overflow-y: auto;
30-
padding: 1rem;
30+
padding: 16px;
31+
display: flex;
32+
flex-direction: column;
33+
background-color: #fff8e1;
3134
}
3235

3336
.message {
34-
max-width: 80%;
35-
margin-bottom: 1rem;
36-
padding: 0.75rem 1rem;
37-
border-radius: 1.5rem;
37+
margin-bottom: 10px;
38+
padding: 10px 14px;
39+
border-radius: 10px;
40+
max-width: 75%;
41+
word-wrap: break-word;
42+
font-size: 15px;
3843
line-height: 1.4;
39-
white-space: pre-line;
4044
}
4145

42-
.user {
43-
background-color: #ffd54f;
46+
.user-message {
47+
background-color: #ffe082;
4448
align-self: flex-end;
45-
margin-left: auto;
49+
border-bottom-right-radius: 0;
4650
}
4751

48-
.assistant {
49-
background-color: #ffffff;
50-
border: 1px solid #eee;
52+
.agent-message {
53+
background-color: #fffde7;
5154
align-self: flex-start;
52-
margin-right: auto;
55+
border-bottom-left-radius: 0;
5356
}
5457

55-
form {
58+
#input-form {
5659
display: flex;
57-
padding: 1rem;
58-
border-top: 1px solid #ddd;
59-
background-color: #fff;
60+
border-top: 1px solid #ccc;
61+
padding: 10px;
62+
background: white;
6063
}
6164

62-
input[type="text"] {
65+
#user-input {
6366
flex-grow: 1;
64-
padding: 0.75rem;
65-
border-radius: 1rem;
67+
padding: 10px;
68+
font-size: 16px;
6669
border: 1px solid #ccc;
67-
font-size: 1rem;
68-
margin-right: 0.5rem;
70+
border-radius: 20px;
71+
margin-right: 10px;
6972
}
7073

7174
button {
75+
padding: 10px 16px;
76+
font-size: 16px;
7277
background-color: #ffc827;
78+
color: black;
7379
border: none;
74-
border-radius: 1rem;
75-
padding: 0.75rem 1.5rem;
76-
font-weight: bold;
80+
border-radius: 20px;
7781
cursor: pointer;
7882
}
7983

80-
ul {
81-
padding-left: 1.2rem;
82-
margin: 0.5rem 0;
83-
}
84-
85-
li {
86-
margin-bottom: 0.4rem;
84+
button:hover {
85+
background-color: #ffa000;
8786
}
8887
</style>
8988
</head>
9089
<body>
91-
<header>AI Indicatiehulp</header>
9290

93-
<div id="messages"></div>
91+
<h1>Indicatiehulp.ai</h1>
92+
93+
<div id="chat"></div>
9494

9595
<form id="input-form">
96-
<input type="text" id="user-input" placeholder="Typ je vraag..." autocomplete="off" />
97-
<button type="submit">Verzend</button>
96+
<input type="text" id="user-input" placeholder="Typ je bericht..." autocomplete="off" />
97+
<button type="submit">Verstuur</button>
9898
</form>
9999

100100
<script src="script.js"></script>
101+
101102
</body>
102103
</html>
103104

105+

0 commit comments

Comments
 (0)