Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.57 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="UTF-8" />
  4. <title>xxx xxxx</title>
  5. <link rel="stylesheet" type="text/css" href="xxxx.css">
  6. <style>
  7. .modules-section-wrapper {
  8. margin: 0 auto;
  9. width: 90%;
  10. height: 400px;
  11. max-width: 1140px;
  12. box-sizing: border-box;
  13. background-color: antiquewhite;
  14. }
  15. .container-content-area {
  16. width: 23.40425%;
  17. height: 378px;
  18. background-color: #666;
  19. margin-right: 2.12766%;
  20. display: block;
  21. float: left;
  22. min-height: 1px;
  23. box-sizing: border-box;
  24. }
  25. /*está sobrepondo a div que a contém*/
  26. .content-area {
  27. margin-right: 0px;
  28. width: 100%;
  29. height: 100%;
  30. display: block;
  31. float: left;
  32. min-height: 1px;
  33. position: relative;
  34. box-sizing: border-box;
  35. background-color: #fff;
  36. }
  37. .info-box {
  38. width: 100%;
  39. height: 338px;
  40. text-align: center;
  41. background-repeat: repeat;
  42. background-attachment: scroll;
  43. background-position-x: left;
  44. background-position-y: top;
  45. margin-bottom: 40px;
  46. box-sizing: border-box;
  47. }
  48. .info-box-image {
  49. width: 100%;
  50. height: 70px;
  51. margin-bottom: 25px;
  52. text-align: center;
  53. position: relative;
  54. font-size: 0;
  55. box-sizing: border-box;
  56. }
  57. .info-box-image-file {
  58. width: 70px;
  59. height: 70px;
  60. background-color: #7e1917;
  61. border-radius: 10px;
  62. display: inline-flex;
  63. justify-content: center;
  64. align-items: center;
  65. position: relative;
  66. border: 0px solid transparent;
  67. box-sizing: border-box;
  68. }
  69. .info-box-image-file .icon-gavel {
  70. color: #fff;
  71. }
  72. .info-box-main {
  73. width: 100%;
  74. height: 215px;
  75. box-sizing: border-box;
  76. }
  77. .info-box-main .info-box-title {
  78. width: 100%;
  79. height: 50px;
  80. text-align: center;
  81. margin-bottom: 4px;
  82. box-sizing: border-box;
  83. }
  84. .info-box-main .info-box-title h4 {
  85. margin: 0;
  86. padding: 0;
  87. color: rgb(0, 0, 0);
  88. font-size: 17px;
  89. font-weight: 400;
  90. font-family: "Roboto";
  91. line-height: 25px;
  92. box-sizing: border-box;
  93. }
  94. .info-box-main .info-box-content {
  95. width: 100%;
  96. height: 161px;
  97. color: rgb(51, 51, 51);
  98. font-size: 15px;
  99. font-weight: 300;
  100. font-family: "Roboto";
  101. line-height: 23px;
  102. text-align: center;
  103. margin-bottom: 28px;
  104. box-sizing: border-box;
  105. }
  106. .info-box-main .info-box-content p {
  107. margin: 0px 0px 10px;
  108. box-sizing: border-box;
  109. }
  110. /*Flex*/
  111. .flex {
  112. display: flex;
  113. }
  114. .flex-item-1 {
  115. flex: 1;
  116. }
  117. </style>
  118. </head>
  119.  
  120. <body>
  121. <div class="flex">
  122.  
  123. <div class="modules-section-wrapper">
  124. <div class="container-content-area">
  125. <div class="content-area">
  126.  
  127. <div class="info-box">
  128. <div class="info-box-image">
  129. <div class="info-box-image-file"> <span class="icon-gavel"></span> </div>
  130. </div>
  131. <div class="info-box-main">
  132. <div class="info-box-title">
  133. <h4>LOREM IPSUM</h4>
  134. </div>
  135. <div class="info-box-content">
  136. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum feugiat quis tellus ac maximus. Cras vulputate nisl a felis lobortis, volutpat semper nibh porttitor. Phasellus.</p>
  137. </div>
  138. </div>
  139. </div>
  140.  
  141. </div>
  142. </div>
  143. </div>
  144.  
  145. <!--segunda box da area de atuacao-->
  146. <div class="container-occupation-area">
  147. <div class="modules-section-wrapper">
  148. <div class="container-content-area">
  149. <div class="content-area">
  150. <div class="info-box">
  151. <div class="info-box-image">
  152. <div class="info-box-image-file"> <span class="icon-gavel"></span> </div>
  153. </div>
  154. <div class="info-box-main">
  155. <div class="info-box-title">
  156. <h4>LOREM IPSUM</h4>
  157. </div>
  158. <div class="info-box-content">
  159. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum feugiat quis tellus ac maximus. Cras vulputate nisl a felis lobortis, volutpat semper nibh porttitor. Phasellus.</p>
  160. </div>
  161. </div>
  162. </div>
  163. </div>
  164. </div>
  165. </div>
  166. </div>
  167.  
  168.  
  169. </div>
  170.  
  171.  
  172. </body>
  173. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement