1
0

tutorial_style.py 628 B

12345678910111213141516171819
  1. # Common styles for questions and answers.
  2. shadow = "rgba(0, 0, 0, 0.15) 0px 2px 8px"
  3. chat_margin = "20%"
  4. message_style = dict(
  5. padding="1em",
  6. border_radius="5px",
  7. margin_y="0.5em",
  8. box_shadow=shadow,
  9. max_width="30em",
  10. display="inline-block",
  11. )
  12. # Set specific styles for questions and answers.
  13. question_style = message_style | dict(bg="#F5EFFE", margin_left=chat_margin)
  14. answer_style = message_style | dict(bg="#DEEAFD", margin_right=chat_margin)
  15. # Styles for the action bar.
  16. input_style = dict(border_width="1px", padding="1em", box_shadow=shadow)
  17. button_style = dict(bg="#CEFFEE", box_shadow=shadow)