Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

109 строки
2.2 KiB

  1. @import '../../_global/styles/mixins';
  2. @import '../../_global/styles/vars';
  3. .mini-teaser {
  4. position: relative;
  5. background-color: white;
  6. overflow: hidden;
  7. width: 100%;
  8. max-width: 420px;
  9. border-radius: 4px;
  10. padding: 16px 12px;
  11. transition: 0.25s ease;
  12. line-height: 1.2;
  13. text-align: center;
  14. text-decoration: none;
  15. background-color: var(--theme-grey-light);
  16. .title{
  17. font-size: 22px;
  18. }
  19. &.standard::before {
  20. content: "";
  21. position: absolute;
  22. display: block;
  23. top: 0;
  24. left: 0;
  25. right: 0;
  26. height: var(--border-width);
  27. background-color: var(--theme-color-secondary);
  28. transition: 0.2s ease;
  29. }
  30. &.standard:hover::before {
  31. height: var(--border-width-hover);
  32. }
  33. h4{
  34. font-size: 22px;
  35. }
  36. &.infoteaser{
  37. background: linear-gradient(161deg, rgba(var(--theme-color-primary-rgb), 1) 0%, rgba(var(--theme-color-primary-rgb), 0.2) 100%);
  38. &:after{
  39. content:"";
  40. position:absolute;
  41. left:0;
  42. right:0;
  43. top:0;
  44. bottom:0;
  45. z-index:-1;
  46. background: linear-gradient(161deg, var(--theme-color-gradient-01) 40%, var(--theme-color-gradient-02) 80%, var(--theme-color-gradient-03) 120%);
  47. }
  48. .title, .category, .btn{
  49. color:white;
  50. }
  51. .title{
  52. margin-top: 0;
  53. padding-left: 54px;
  54. min-height: 48px;
  55. text-align: left;
  56. line-height: 24px;
  57. margin-bottom: 19px;
  58. }
  59. .btn{
  60. background-color: transparent;
  61. border: 1px solid white;
  62. margin-left: 54px;
  63. display: inline-block;
  64. padding:8px 10px;
  65. line-height: 22px;
  66. border-radius:16px;
  67. --button-padding: 8px 10px;
  68. min-height: 0;
  69. font-size: 22px;
  70. }
  71. .icon-box{
  72. margin-bottom: 19px;
  73. margin-top: 0;
  74. padding-top: 0;
  75. position: absolute;
  76. top: 16px;
  77. left: 12px;
  78. }
  79. .text-box{
  80. padding: 0;
  81. display: flex;
  82. flex-wrap: wrap;
  83. }
  84. }
  85. .icon-box {
  86. font-family: 'Pictograms', sans-serif;
  87. line-height: 1;
  88. color: white;
  89. font-size:48px
  90. }
  91. .category{
  92. text-align: left;
  93. padding:0;
  94. margin:0;
  95. margin-bottom:8px;
  96. }
  97. .title{
  98. text-align: left;
  99. padding:0;
  100. margin:0;
  101. }
  102. }