Skip to content

Commit 50fcc55

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

File tree

1 file changed

+48
-48
lines changed

1 file changed

+48
-48
lines changed

index.html

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -2,102 +2,102 @@
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>Indicatiehulp.ai</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>AI Indicatiehulp</title>
77
<style>
88
body {
9-
font-family: "Segoe UI", sans-serif;
9+
font-family: Arial, sans-serif;
10+
background-color: #fff8e1;
1011
margin: 0;
1112
padding: 0;
12-
background-color: #fff8e1; /* zachte oranje achtergrond */
1313
display: flex;
1414
flex-direction: column;
1515
height: 100vh;
1616
}
1717

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

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

3633
.message {
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;
34+
max-width: 80%;
35+
margin-bottom: 1rem;
36+
padding: 0.75rem 1rem;
37+
border-radius: 1.5rem;
4338
line-height: 1.4;
39+
white-space: pre-line;
4440
}
4541

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

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

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

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

7471
button {
75-
padding: 10px 16px;
76-
font-size: 16px;
7772
background-color: #ffc827;
78-
color: black;
7973
border: none;
80-
border-radius: 20px;
74+
border-radius: 1rem;
75+
padding: 0.75rem 1.5rem;
76+
font-weight: bold;
8177
cursor: pointer;
8278
}
8379

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

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

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

100100
<script src="script.js"></script>
101-
102101
</body>
103102
</html>
103+

0 commit comments

Comments
 (0)