Skip to content

Commit e1e0ac8

Browse files
authored
Update index.html
1 parent 188930d commit e1e0ac8

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

index.html

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
<title>Indicatiehulp.ai</title>
77
<style>
88
body {
9-
font-family: Arial, sans-serif;
9+
font-family: "Segoe UI", sans-serif;
1010
margin: 0;
1111
padding: 0;
12-
background-color: #f4f4f4;
12+
background-color: #e5ddd5;
1313
display: flex;
1414
flex-direction: column;
1515
height: 100vh;
1616
}
1717

1818
h1 {
1919
text-align: center;
20-
background-color: #ffc827;
21-
color: black;
20+
background-color: #128c7e;
21+
color: white;
2222
padding: 12px 0;
2323
margin: 0;
2424
font-size: 20px;
@@ -30,59 +30,60 @@
3030
padding: 16px;
3131
display: flex;
3232
flex-direction: column;
33+
background: url("https://www.transparenttextures.com/patterns/cubes.png") repeat;
34+
background-color: #e5ddd5;
3335
}
3436

3537
.message {
36-
margin-bottom: 12px;
37-
padding: 12px 16px;
38+
margin-bottom: 10px;
39+
padding: 10px 14px;
3840
border-radius: 10px;
3941
max-width: 75%;
4042
word-wrap: break-word;
41-
line-height: 1.5;
42-
font-size: 16px;
43+
font-size: 15px;
44+
line-height: 1.4;
4345
}
4446

4547
.user-message {
46-
background-color: #e0f7fa;
48+
background-color: #dcf8c6;
4749
align-self: flex-end;
48-
text-align: right;
50+
border-bottom-right-radius: 0;
4951
}
5052

5153
.agent-message {
52-
background-color: #f1f1f1;
54+
background-color: white;
5355
align-self: flex-start;
54-
text-align: left;
56+
border-bottom-left-radius: 0;
5557
}
5658

5759
#input-form {
5860
display: flex;
5961
border-top: 1px solid #ccc;
6062
padding: 10px;
61-
background: white;
63+
background: #f0f0f0;
6264
}
6365

6466
#user-input {
6567
flex-grow: 1;
6668
padding: 10px;
6769
font-size: 16px;
6870
border: 1px solid #ccc;
69-
border-radius: 6px;
71+
border-radius: 20px;
7072
margin-right: 10px;
7173
}
7274

7375
button {
7476
padding: 10px 16px;
7577
font-size: 16px;
76-
background-color: #ffc827;
77-
color: black;
78+
background-color: #128c7e;
79+
color: white;
7880
border: none;
79-
border-radius: 6px;
81+
border-radius: 20px;
8082
cursor: pointer;
8183
}
8284

8385
button:hover {
84-
background-color: #125aa3;
85-
color: white;
86+
background-color: #075e54;
8687
}
8788
</style>
8889
</head>

0 commit comments

Comments
 (0)