Advertisement
endarfernandes

CSS Dasar

Nov 25th, 2016
2,863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.88 KB | None | 0 0
  1. body {
  2.     background-color: #000;
  3.     color: #fff;
  4.     font-family: arial;
  5. }
  6.  
  7. #outer-wrapper {
  8.     background: #fff;
  9.     color: #000;
  10.     margin: 0px auto;
  11.     width: 950px;
  12. }
  13.  
  14. #header-wrapper {
  15.     background: #ff4949;
  16.     color: #fff;
  17.     margin: 10px;
  18.     padding: 10px;
  19.     clear: both;
  20. }
  21.  
  22. #content-wrapper {
  23.     position: relative;
  24.     margin: 0px auto;
  25.     clear: both;
  26. }
  27.  
  28. #main-wrapper {
  29.     background: #ffff65;
  30.     color: #000;
  31.     margin: 10px;
  32.     margin-right: 270px;
  33.     padding: 10px;
  34. }
  35.  
  36. #sidebar-wrapper {
  37.     background: #b3fe3d;
  38.     color: #000;
  39.     margin: 10px;
  40.     margin-top: 0px;
  41.     position: absolute;
  42.     top: 0px;
  43.     right: 0px;
  44.     width: 250px;
  45.     height: 100%;
  46. }
  47.  
  48. #sidebar-wrapper .widget-content {
  49.     margin: 10px;
  50. }
  51.  
  52. #footer-wrapper {
  53.     background: #40ebfe;
  54.     color: #000;
  55.     margin: 10px;
  56.     padding: 10px;
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement