Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. <div id="about">
  2. <div class="left">
  3. <div class="header"><p>about</p></div>
  4. <div class="bg"></div>
  5. </div>
  6. <div class="right">
  7. <p class="about_text"></p>
  8. <!-- put button here -->
  9. </div>
  10. </div>
  11.  
  12.  
  13. <div id="footer">
  14. <p id="footer_text">Made for <i class="fa fa-heart"></i></p>
  15. <p id="social">
  16. <i class="fa fa-envelope"></i>
  17. <i class="fa fa-github"></i>
  18. <i class="fa fa-facebook"></i>
  19. <i class="fa fa-twitter"></i>
  20. <i class="fa fa-paypal"></i>
  21. </p>
  22. </div>
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32. html, body {
  33. top: 0;
  34. left: 0;
  35. margin: 0;
  36. padding: 0;
  37. line-height: 0;
  38. }
  39.  
  40. #about {
  41. width: 100%;
  42. height: 800px;
  43. position: absolute;
  44. }
  45.  
  46. .header {
  47. display: table-cell;
  48. background-color: rgba(255,82,82,0.8);
  49. height: 110px;
  50. width: 260px;
  51. position: absolute;
  52. top: 0;
  53. left: 0;
  54. padding: 0 50px;
  55. z-index: 10;
  56. }
  57.  
  58. .header p {
  59. text-align: center;
  60. margin: 0;
  61. font-size: 80px;
  62. color: #f9f9f9;
  63. font-family: Montserrat, sans-serif;
  64. line-height: 110px;
  65. }
  66.  
  67. .left {
  68. /*display: table-cell;*/
  69. position: absolute;
  70. left: 0;
  71. top: 0;
  72. float: left;
  73. width: 64%;
  74. height: 100%;
  75. }
  76.  
  77. .bg {
  78. background: url("../static/img/aboutpic.svg") 100% 100% no-repeat;
  79. top: 0;
  80. left: 0;
  81. float: left;
  82. position: absolute;
  83. width: 100%;
  84. height: 100%;
  85. }
  86.  
  87. .right {
  88. position: absolute;
  89. right: 0;
  90. top: 0;
  91. /*float: left;*/
  92. width: 50%;
  93. height: 100%;
  94. background-color: #ff5555;
  95. }
  96.  
  97. #footer {
  98. position: relative;
  99. background-color: #ff3333;
  100. width: 100%;
  101. height: 100px;
  102. }
  103.  
  104. #footer p {
  105. font-family: Open Sans, sans-serif;
  106. font-size: 40px;
  107. color: #f9f9f9;
  108.  
  109. }
  110.  
  111. #footer_text {
  112. margin: 0 0 0 30px;
  113. float: left;
  114. line-height: 100px;
  115. /*text-align: left;*/
  116. }
  117.  
  118. #social {
  119. float: right;
  120. /*text-align: right;*/
  121. margin: 0 30px 0 0;
  122. line-height: 100px;
  123. }
  124.  
  125. #social i {
  126. margin: 0 10px 0 10px;
  127. }
  128.  
  129. @media screen and (max-width: 551px) {
  130.  
  131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement