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

113 строки
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. display: block;
  17. .title{
  18. font-size: 22px;
  19. }
  20. &.standard::before {
  21. content: "";
  22. position: absolute;
  23. display: block;
  24. top: 0;
  25. left: 0;
  26. right: 0;
  27. height: 4px;
  28. background-color: var(--theme-color-secondary);
  29. transition: 0.2s ease;
  30. }
  31. &.standard:hover::before {
  32. height: 8px;
  33. }
  34. h4{
  35. font-size: 22px;
  36. }
  37. &.infoteaser{
  38. background: linear-gradient(161deg, rgba(var(--theme-color-primary-rgb), 1) 0%, rgba(var(--theme-color-primary-rgb), 0.2) 100%);
  39. &:after{
  40. content:"";
  41. position:absolute;
  42. left:0;
  43. right:0;
  44. top:0;
  45. bottom:0;
  46. z-index:-1;
  47. background: linear-gradient(161deg, var(--theme-color-gradient-01) 40%, var(--theme-color-gradient-02) 80%, var(--theme-color-gradient-03) 120%);
  48. }
  49. .title, .category, .btn{
  50. color:white;
  51. }
  52. .title{
  53. margin-top: 0;
  54. padding-left: 54px;
  55. min-height: 48px;
  56. text-align: left;
  57. line-height: 24px;
  58. margin-bottom: 19px;
  59. }
  60. .btn{
  61. background-color: transparent;
  62. border: 1px solid white;
  63. margin-left: 54px;
  64. display: inline-block;
  65. padding:8px 10px;
  66. line-height: 22px;
  67. border-radius:16px;
  68. --button-padding: 8px 10px;
  69. min-height: 0;
  70. font-size: 22px;
  71. }
  72. .icon-box{
  73. margin-bottom: 19px;
  74. margin-top: 0;
  75. padding-top: 0;
  76. position: absolute;
  77. top: 16px;
  78. left: 12px;
  79. }
  80. .text-box{
  81. padding: 0;
  82. display: flex;
  83. flex-wrap: wrap;
  84. }
  85. }
  86. .icon-box {
  87. font-family: 'Pictograms', sans-serif;
  88. line-height: 1;
  89. color: white;
  90. font-size:48px
  91. }
  92. .category{
  93. text-align: left;
  94. padding:0;
  95. margin:0;
  96. margin-bottom:8px;
  97. font-size:16px;
  98. text-transform: uppercase;
  99. line-height: 18px;
  100. }
  101. .title{
  102. text-align: left;
  103. padding:0;
  104. margin:0;
  105. }
  106. }