podcasts.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .podcasts{
  2. h1{
  3. font-family: "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  4. margin-bottom: 30px;
  5. }
  6. .topic_item{
  7. margin-bottom: 30px;
  8. .topic_title{
  9. color: #000;
  10. font-size: 24px;
  11. font-weight: 700;
  12. font-family: "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  13. margin: 0 0 30px 0;
  14. display: flex;
  15. align-items: center;
  16. a{
  17. display: inline-flex;
  18. }
  19. .video-list-title-link{
  20. margin-left: 15px;
  21. height: 40px;
  22. width: 40px;
  23. display: inline-flex;
  24. justify-content: center;
  25. align-items: center;
  26. background: #80808070;
  27. border-radius: 50%;
  28. svg{
  29. width: 20px;
  30. height: 20px;
  31. margin-left: 3px;
  32. }
  33. }
  34. }
  35. .topic_items{
  36. .topic-news-item{
  37. display: block;
  38. flex-grow: 1;
  39. margin-bottom: 30px;
  40. a{
  41. display: flex;
  42. height: 100%;
  43. flex-direction: column;
  44. }
  45. picture{
  46. width: 100%;
  47. }
  48. .meta{
  49. position: relative;
  50. background: white;
  51. flex-grow: 1;
  52. padding: 15px 15px 35px 15px;
  53. .title{
  54. font-size: 16px;
  55. }
  56. .published_at{
  57. position: absolute;
  58. bottom: 15px;
  59. left: 15px;
  60. }
  61. }
  62. }
  63. }
  64. }
  65. .pagination{
  66. margin: auto;
  67. color: #3b5573;
  68. display: flex;
  69. font: 14px/1 "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  70. li{
  71. a{
  72. display: flex;
  73. width: 100%;
  74. height: 100%;
  75. justify-content: center;
  76. align-items: center;
  77. }
  78. background: rgba(59,85,115,.08);
  79. display: flex;
  80. width: 40px;
  81. height: 40px;
  82. border-radius: 4px;
  83. margin-right: 7px;
  84. justify-content: center;
  85. align-items: center;
  86. &.active{
  87. a{
  88. background: #f5f5f5;
  89. color: #f6911f;
  90. }
  91. }
  92. &.disabled{
  93. cursor: not-allowed;
  94. color: #b3b3b3;
  95. user-select: none;
  96. }
  97. }
  98. }
  99. }