layout.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @charset "UTF-8";
  2. /* base settings */
  3. html, body {
  4. background-color: #262626;
  5. color: white;
  6. }
  7. /* animation */
  8. @keyframes waitingDot {
  9. 0% { margin-left: 0px; }
  10. 50% { margin-left: 150px; }
  11. 100% { margin-left: 0px; }
  12. }
  13. .waitingDot {
  14. animation-name: waitingDot;
  15. animation-duration: 5s;
  16. animation-iteration-count: infinite;
  17. animation-timing-function: linear;
  18. width: 15px;
  19. height: 15px;
  20. background-color: red;
  21. display: inline-block;
  22. border-radius: 1000px;
  23. }
  24. /* contact list */
  25. #contactContainer {
  26. margin: 5px;
  27. padding: 0px;
  28. }
  29. #contactList {
  30. margin: 0px;
  31. margin-top: 10px;
  32. }
  33. #contactList li {
  34. padding-bottom: 10px;
  35. }
  36. /* button */
  37. button {
  38. background-color: #25257f;
  39. color: white;
  40. outline: none;
  41. border: 3px solid black;
  42. box-shadow: 5px 5px 5px black;
  43. }
  44. button:hover {
  45. border-color: white;
  46. box-shadow: 5px 5px 5px white;
  47. background-color: #3a1254;
  48. }
  49. button:active {
  50. border-color: black;
  51. box-shadow: 5px 5px 5px black;
  52. }
  53. /* chat history */
  54. #chat pre {
  55. display: inline;
  56. }