Guest User

Untitled

a guest
Dec 14th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. <div id="features" class="section_3">
  2. <h1 id="titulo_section">...</h1>
  3.  
  4. <section class="section_first">...</section>
  5. <section class="section_first">...</section>
  6.  
  7. </div>
  8. <div id="features" class="section_3">
  9. <h1 id="titulo_section">...</h1>
  10.  
  11. <section class="section_second">...</section>
  12. <section class="section_second">...</section>
  13.  
  14. </div>
  15.  
  16. <div id="features" class="section_3">
  17. <h1 id="titulo_section">...</h1>
  18.  
  19. <section class="section_third">...</section>
  20. <section class="section_third">...</section>
  21. <section class="section_third">...</section>
  22.  
  23. </div>
  24.  
  25. <div id="features" class="section_4">
  26. <h1 id="titulo_section">...</h1>
  27.  
  28. <section class="section_fourth">...</section>
  29. <section class="section_fourth">...</section>
  30. <section class="section_fourth">...</section>
  31.  
  32. </div>
  33.  
  34. .section_1 {
  35. display: flex;
  36. flex-wrap: wrap;
  37. justify-content: center;
  38. }
  39.  
  40. .section_2 {
  41. background-color: snow;
  42. display: flex;
  43. flex-wrap: wrap;
  44. justify-content: center;
  45. }
  46.  
  47. .section_3 {
  48. background-color: lightgray;
  49. display: flex;
  50. flex-wrap: wrap;
  51. justify-content: center;
  52. }
  53.  
  54. .section_4 {
  55. background-color: snow;
  56. display: flex;
  57. flex-wrap: wrap;
  58. justify-content: center;
  59. }
  60.  
  61. /* css das seções dentro da div's */
  62.  
  63. .section_first {
  64. word-wrap: break-word;
  65. background-color: cornflowerblue;
  66. padding: 2%;
  67. text-align: justify;
  68. font-size: 20px;
  69. border: 1px solid gray;
  70. }
  71.  
  72. .section_second {
  73. word-wrap: break-word;
  74. word-spacing: -2px;
  75. background-color: inherit;
  76. width: 400px;
  77. margin: 20px;
  78. margin-top: -10px;
  79. margin-bottom: 40px;
  80. padding: 2%;
  81. text-align: justify;
  82. font-size: 20px;
  83. }
  84.  
  85. .section_third{
  86. word-wrap: break-word;
  87. background-color: snow;
  88. width: 200px;
  89. margin: 20px;
  90. margin-bottom: 40px;
  91. padding: 2%;
  92. text-align: justify;
  93. font-size: 18px;
  94. box-shadow: 0px 0px 1px 1px gray;
  95. }
  96.  
  97. .section_fourth{
  98. word-wrap: break-word;
  99. background-color: snow;
  100. width: 200px;
  101. margin: 20px;
  102. margin-bottom: 40px;
  103. padding: 2%;
  104. text-align: justify;
  105. font-size: 18px;
  106. box-shadow: 0px 0px 1px 1px gray;
  107. }
Add Comment
Please, Sign In to add comment