Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

93 linhas
1.7 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. }
  44. a {
  45. display: block;
  46. position: relative;
  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. border-radius: 50%;
  80. background: var(--theme-color-secondary);
  81. }
  82. @media(max-width: 399px) {
  83. position: static;
  84. left: auto;
  85. top: auto;
  86. }
  87. }
  88. }
  89. }