-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
209 lines (189 loc) · 3.92 KB
/
style.css
File metadata and controls
209 lines (189 loc) · 3.92 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/*
Singapling Website
Modern, Gen Z-focused static site for a fake Singapore telco.
Pages: Home, FAQ, Pricing
*/
body {
margin: 0;
font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
background: linear-gradient(135deg, #f9fafc 0%, #e0e7ff 100%);
color: #222;
}
header {
background: linear-gradient(90deg, #7f5af0 0%, #2cb67d 100%);
color: #fff;
padding: 2rem 1rem 1rem 1rem;
text-align: center;
border-bottom-left-radius: 2rem;
border-bottom-right-radius: 2rem;
box-shadow: 0 4px 24px rgba(127,90,240,0.08);
}
nav {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 1rem;
}
nav a {
color: #fff;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: color 0.2s;
}
nav a:hover {
color: #ff8906;
}
main {
max-width: 900px;
margin: 2rem auto;
background: #fff;
border-radius: 1.5rem;
box-shadow: 0 2px 16px rgba(44,182,125,0.07);
padding: 2rem;
}
h1, h2, h3 {
font-family: 'Poppins', 'Inter', Arial, sans-serif;
font-weight: 800;
letter-spacing: -1px;
}
.faq-item {
margin-bottom: 1.5rem;
}
.pricing-table {
width: 100%;
border-collapse: collapse;
margin-top: 2rem;
}
.pricing-table th, .pricing-table td {
border: 1px solid #e0e7ff;
padding: 1rem;
text-align: left;
}
.pricing-table th {
background: #f3f4f6;
color: #7f5af0;
}
.pricing-table tr:nth-child(even) {
background: #f9fafc;
}
.badge {
display: inline-block;
background: #2cb67d;
color: #fff;
border-radius: 1rem;
padding: 0.2rem 0.8rem;
font-size: 0.9rem;
margin-left: 0.5rem;
}
footer {
text-align: center;
color: #888;
margin: 3rem 0 1rem 0;
font-size: 0.95rem;
}
.chat-msg {
margin-bottom: 0.7rem;
padding: 0.7rem 1rem;
border-radius: 1.2rem 1.2rem 1.2rem 0.4rem;
max-width: 90%;
word-break: break-word;
font-size: 1.08rem;
background: #fff;
color: #222;
border: 1.5px solid #e0e7ff;
align-self: flex-start;
text-align: left;
font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
box-shadow: 0 2px 8px rgba(127,90,240,0.07);
transition: background 0.2s, box-shadow 0.2s;
}
.chat-msg.user {
background: linear-gradient(90deg, #e0e7ff 60%, #7f5af0 100%);
color: #222;
align-self: flex-end;
text-align: right;
border-radius: 1.2rem 1.2rem 0.4rem 1.2rem;
border: none;
box-shadow: 0 2px 8px rgba(44,182,125,0.08);
}
.chat-msg.bot {
background: #fff;
color: #222;
border: 1.5px solid #e0e7ff;
align-self: flex-start;
text-align: left;
border-radius: 1.2rem 1.2rem 1.2rem 0.4rem;
box-shadow: 0 2px 8px rgba(127,90,240,0.07);
}
.chat-table {
border-collapse: collapse;
margin: 0.7rem 0;
width: 100%;
font-size: 1.05rem;
box-shadow: 0 2px 8px #e0e7ff33;
}
.chat-table th, .chat-table td {
border: 1px solid #e0e7ff;
padding: 0.6rem 1rem;
text-align: left;
}
.chat-table th {
background: #f3f4f6;
color: #7f5af0;
font-weight: bold;
}
.chat-table tr:nth-child(even) {
background: #f9fafc;
}
/* Add markdown styling for code, bold, italics */
.chat-msg b { font-weight: bold; }
.chat-msg i { font-style: italic; }
.chat-msg code {
background: #f3f4f6;
color: #7f5af0;
padding: 0.1em 0.4em;
border-radius: 0.3em;
font-size: 0.98em;
font-family: 'Fira Mono', 'Consolas', monospace;
}
.chatbot-avatar {
width: 68px;
height: 68px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 2px 8px #7f5af033;
margin-right: 0.7rem;
}
#chat-input {
font-size: 1.08rem;
font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}
#chatbot-section {
max-width: 700px !important;
min-width: 0;
width: 100%;
margin-left: auto;
margin-right: auto;
background: #f9fafc;
padding: 1.5rem 1rem;
border-radius: 1.2rem;
box-shadow: 0 2px 12px #7f5af022;
}
@media (max-width: 900px) {
#chatbot-section {
max-width: 98vw !important;
padding: 1.2rem 0.3rem;
}
}
@media (max-width: 600px) {
main {
padding: 1rem;
}
header {
padding: 1.2rem 0.5rem 0.7rem 0.5rem;
}
nav {
gap: 1rem;
}
}