No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

101 líneas
1.9 KiB

  1. @use '../../_global/styles/mixins' as *;
  2. @use '../../_global/styles/vars' as *;
  3. .howto-list {
  4. display: flex;
  5. justify-content: space-between;
  6. margin-top: var(--section-margin);
  7. margin-bottom: var(--section-margin);
  8. @media(max-width: 767px) {
  9. display: block;
  10. }
  11. &--left {
  12. width: calc(50% - 30px);
  13. @media(max-width: 767px) {
  14. width: auto;
  15. padding-bottom: 32px;
  16. }
  17. }
  18. h2 {
  19. margin-top: 0;
  20. font-size: 64px;
  21. line-height: 70px;
  22. // HIER OPTIMIEREN! (ab 599px?)
  23. @media(max-width: 399px) {
  24. font-size: 32px;
  25. line-height: 35px;
  26. margin-bottom: 0.3em;
  27. }
  28. }
  29. p {
  30. }
  31. ul {
  32. width: calc(50% - 30px);
  33. margin: 0;
  34. padding: 0 0 0 132px;
  35. @media(max-width: 767px) {
  36. width: auto;
  37. }
  38. @media(max-width: 399px) {
  39. padding-left: 0;
  40. }
  41. li {
  42. list-style: none;
  43. padding: 0 0 32px 0;
  44. position: relative;
  45. }
  46. .teaser--link {
  47. position: absolute;
  48. left: 0;
  49. top: 0;
  50. width: 100%;
  51. height: 100%;
  52. z-index: 10;
  53. }
  54. h3 {
  55. margin-top: 0;
  56. margin-bottom: 0.18em;
  57. }
  58. p {
  59. margin-bottom: 5px;
  60. }
  61. span {
  62. text-decoration: underline;
  63. }
  64. img,
  65. .icon-box {
  66. position: absolute;
  67. left: -132px;
  68. top: 2px;
  69. width: 100px;
  70. height: 100px;
  71. font-family: "Pictograms", sans-serif;
  72. font-size: 70px;
  73. line-height: 1.4285;
  74. text-align: center;
  75. color: var(--color-text) !important;
  76. &:after {
  77. content: "";
  78. position: absolute;
  79. z-index: -1;
  80. left: 0;
  81. top: 0;
  82. width: 100%;
  83. height: 100%;
  84. max-width: 100px;
  85. max-height: 100px;
  86. border-radius: 50%;
  87. background: var(--color-background);
  88. }
  89. @media(max-width: 399px) {
  90. position: static;
  91. left: auto;
  92. top: auto;
  93. margin-bottom: 16px;
  94. }
  95. }
  96. }
  97. }