Você não pode selecionar mais de 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.
 
 
 
 

76 linhas
1.3 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. position: absolute;
  61. left: -132px;
  62. top: 2px;
  63. width: 100px;
  64. height: auto;
  65. @media(max-width: 399px) {
  66. position: static;
  67. left: auto;
  68. top: auto;
  69. }
  70. }
  71. }
  72. }