25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

96 satır
1.8 KiB

  1. @import '../../_global/styles/mixins';
  2. @import '../../_global/styles/vars';
  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. @media(max-width: 399px) {
  23. font-size: 32px;
  24. line-height: 35px;
  25. margin-bottom: 0.3em;
  26. }
  27. }
  28. p {
  29. }
  30. ul {
  31. width: calc(50% - 30px);
  32. margin: 0;
  33. padding: 0 0 0 132px;
  34. @media(max-width: 767px) {
  35. width: auto;
  36. }
  37. @media(max-width: 399px) {
  38. padding-left: 0;
  39. }
  40. li {
  41. list-style: none;
  42. padding: 0 0 32px 0;
  43. position: relative;
  44. }
  45. a {
  46. display: block;
  47. text-decoration: none;
  48. }
  49. h3 {
  50. margin-top: 0;
  51. margin-bottom: 0.18em;
  52. }
  53. p {
  54. margin-bottom: 5px;
  55. }
  56. span {
  57. text-decoration: underline;
  58. }
  59. img,
  60. .icon-box {
  61. position: absolute;
  62. left: -132px;
  63. top: 2px;
  64. width: 100px;
  65. height: 100px;
  66. font-family: "Pictograms", sans-serif;
  67. font-size: 70px;
  68. line-height: 1.4285;
  69. text-align: center;
  70. color: var(--theme-color-primary) !important;
  71. &:after {
  72. content: "";
  73. position: absolute;
  74. z-index: -1;
  75. left: 0;
  76. top: 0;
  77. width: 100%;
  78. height: 100%;
  79. max-width: 100px;
  80. max-height: 100px;
  81. border-radius: 50%;
  82. background: var(--theme-color-secondary);
  83. }
  84. @media(max-width: 399px) {
  85. position: static;
  86. left: auto;
  87. top: auto;
  88. margin-bottom: 16px;
  89. }
  90. }
  91. }
  92. }