Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. font-family: "Roboto" sans-serif;
  8. font-size: 3em;
  9. color: #A3A0A0;
  10. }
  11. .row:after {
  12. visibility: hidden;
  13. display: block;
  14. font-size: 0;
  15. content: " ";
  16. clear: both;
  17. height: 0;
  18. }
  19. .row { display: inline-block; }
  20. /* start commented backslash hack \*/
  21. * html .row { height: 1%; }
  22. .row { display: block; }
  23. /* close commented backslash hack */
  24.  
  25. #wrepper {
  26. height: 100%;
  27. width: 100%;
  28. }
  29.  
  30. .header {
  31. margin-bottom: 10px;
  32. }
  33. .inner-header {
  34. height: 200px;
  35. background: #4F88DD;
  36. }
  37. .sadebar-1 {
  38. width: 20%;
  39. float: left;
  40. padding-right: 10px;
  41. }
  42. .inner-sadebar-1 {
  43. min-height: 500px;
  44. background: #4F88DD;
  45. }
  46. .content {
  47. width: 60%;
  48. float: left;
  49. }
  50. .inner-content {
  51. min-height: 500px;
  52. background: #4F88DD;
  53.  
  54. }
  55. .sadebar-2 {
  56. width: 20%;
  57. float: left;
  58. padding-left: 10px;
  59. }
  60. .inner-sadebar-2 {
  61. min-height: 500px;
  62. background: #4F88DD;
  63. }
  64.  
  65. .footer {
  66. margin-top: 10px;
  67. }
  68. .inner-footer {
  69. height: 200px;
  70. background: #4F88DD;
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement