Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

37 Zeilen
545B

  1. .chat {
  2. background-color: rgba(255, 255, 255, 0.95);
  3. position: fixed;
  4. height: 140px;
  5. width: 320px;
  6. right: 0;
  7. top: 0;
  8. }
  9. .chat .actions {
  10. display: grid;
  11. grid-template-columns: 1fr auto;
  12. }
  13. #textbox {
  14. resize: none;
  15. }
  16. .posts {
  17. overflow-y: scroll;
  18. height: 100%;
  19. }
  20. .post > * {
  21. display: inline;
  22. padding-right: 3px;
  23. }
  24. .post .ts {
  25. font-family: monospace;
  26. color: gray;
  27. }
  28. .post .source {
  29. font-weight: bold;
  30. }
  31. .post .text p {
  32. margin: 0;
  33. }
  34. .post .text p:first-child {
  35. display: inline;
  36. }