Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

57 lines
948B

  1. .chat {
  2. z-index: 999;
  3. background-color: rgba(255, 255, 255, 0.95);
  4. position: fixed;
  5. height: 140px;
  6. width: 320px;
  7. right: 0;
  8. top: 0;
  9. }
  10. .chat .actions {
  11. display: grid;
  12. grid-template-columns: 1fr auto;
  13. }
  14. #textbox {
  15. resize: none;
  16. }
  17. .posts {
  18. overflow-y: scroll;
  19. height: 100%;
  20. }
  21. .post > * {
  22. display: inline;
  23. padding-right: 3px;
  24. }
  25. .post .ts {
  26. font-family: monospace;
  27. color: gray;
  28. }
  29. .post .source {
  30. font-weight: bold;
  31. }
  32. .post .text p {
  33. margin: 0;
  34. }
  35. .post .text p:first-child {
  36. display: inline;
  37. }
  38. .badge {
  39. display: inline-flex;
  40. justify-content: center;
  41. align-items: center;
  42. color: white;
  43. background-color: silver;
  44. border: none;
  45. border-radius: 5px;
  46. font-family: verdana;
  47. font-size: xx-small;
  48. font-weight: bold;
  49. min-width: 15px;
  50. padding: 0 3px;
  51. margin: 3px 3px;
  52. line-height: 1.5;
  53. }
  54. .badge.hot {
  55. background-color: crimson;
  56. }