Spaces:
Sleeping
Sleeping
File size: 377 Bytes
278e934 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# htmlTemplates.py
css = """
<style>
.chat-bubble {
border-radius: 10px;
padding: 10px;
margin: 10px 0;
}
</style>
"""
user_template = """
<div class="chat-bubble" style="background-color:#DCF8C6;">
<b>User:</b> {{MSG}}
</div>
"""
bot_template = """
<div class="chat-bubble" style="background-color:#F1F0F0;">
<b>Bot:</b> {{MSG}}
</div>
""" |