Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

_subject.scss 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .subject {
  2. box-sizing: border-box;
  3. color: #fff;
  4. margin-top: 20px;
  5. position: absolute;
  6. top: -120px;
  7. transition: top .3s ease-in;
  8. width: 100%;
  9. z-index: $zindex3;
  10. &.visible {
  11. top: 0;
  12. }
  13. &.recording {
  14. top: 0;
  15. .subject-details-container {
  16. opacity: 0;
  17. transition: opacity .3s ease-in;
  18. }
  19. .subject-info-container .show-always {
  20. transition: margin-left .3s ease-in;
  21. }
  22. &.visible {
  23. .subject-details-container {
  24. opacity: 1;
  25. }
  26. }
  27. }
  28. }
  29. .subject-details-container {
  30. display: flex;
  31. }
  32. .subject-info-container {
  33. display: flex;
  34. justify-content: center;
  35. max-width: calc(100% - 280px);
  36. margin: 0 auto;
  37. &--full-width {
  38. max-width: 100%;
  39. }
  40. @media (max-width: 500px) {
  41. flex-wrap: wrap;
  42. max-width: 100%;
  43. }
  44. }
  45. .subject-info {
  46. align-items: center;
  47. display: flex;
  48. margin-bottom: 4px;
  49. max-width: 80%;
  50. height: 28px;
  51. }
  52. .subject-text {
  53. background: rgba(0, 0, 0, 0.6);
  54. border-radius: 3px 0px 0px 3px;
  55. font-size: 14px;
  56. line-height: 24px;
  57. padding: 2px 16px;
  58. height: 24px;
  59. overflow: hidden;
  60. text-overflow: ellipsis;
  61. white-space: nowrap;
  62. }
  63. .subject-timer {
  64. background: rgba(0, 0, 0, 0.8);
  65. border-radius: 0px 3px 3px 0px;
  66. display: inline-block;
  67. font-size: 12px;
  68. line-height: 16px;
  69. min-width: 34px;
  70. padding: 6px 8px;
  71. }