_broadcast.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .broadcast-page {
  2. max-width: 800px;
  3. width: 100%;
  4. margin: 20px auto 0;
  5. }
  6. .broadcast-panel {
  7. background-color: var(--bg_panel);
  8. border: 1px solid var(--border_grey);
  9. border-radius: 8px;
  10. overflow: hidden;
  11. }
  12. .broadcast-player {
  13. position: relative;
  14. background: black;
  15. video,
  16. img {
  17. display: block;
  18. width: 100%;
  19. }
  20. }
  21. .broadcast-info {
  22. padding: 14px 16px;
  23. }
  24. .broadcast-title {
  25. font-size: 18px;
  26. font-weight: bold;
  27. margin: 0 0 12px;
  28. }
  29. .broadcast-user-row {
  30. display: flex;
  31. align-items: center;
  32. justify-content: space-between;
  33. }
  34. .broadcast-user {
  35. display: flex;
  36. align-items: center;
  37. gap: 10px;
  38. color: var(--fg_color);
  39. img {
  40. width: 40px;
  41. height: 40px;
  42. border-radius: 50%;
  43. }
  44. }
  45. .broadcast-username {
  46. color: var(--fg_dark);
  47. }
  48. .broadcast-meta {
  49. color: var(--fg_faded);
  50. font-size: 14px;
  51. display: flex;
  52. flex-direction: column;
  53. align-items: flex-end;
  54. flex-shrink: 0;
  55. line-height: 1.5em;
  56. }
  57. .broadcast-live {
  58. background: #e0245e;
  59. color: white;
  60. padding: 1px 6px;
  61. border-radius: 3px;
  62. font-weight: bold;
  63. font-size: 12px;
  64. }