-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (66 loc) · 1.49 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Styled Chatbot</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.chatbot-container {
width: 100%;
max-width: 800px;
background-color: #fff;
border-radius: 15px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
overflow: hidden;
}
.chatbot-header {
background-color: #4CAF50;
color: white;
padding: 15px;
font-size: 1.5rem;
text-align: center;
}
iframe {
width: 100%;
border: none;
height: 500px;
}
.chatbot-footer {
background-color: #f1f1f1;
padding: 10px;
text-align: center;
font-size: 0.9rem;
color: #666;
border-top: 1px solid #ddd;
}
.chatbot-footer a {
color: #4CAF50;
text-decoration: none;
}
</style>
</head>
<body>
<div class="chatbot-container">
<div class="chatbot-header">
UniversityInfo Chatbot
</div>
<iframe
src="https://www.chatbase.co/chatbot-iframe/mQ8mlY16u5rgaqaD_rnya"
frameborder="0"
></iframe>
<div class="chatbot-footer">
Powered by <a href="https://www.chatbase.co" target="_blank">Chatbase.co</a>
</div>
</div>
</body>
</html>