Facebook
From Red Camel, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 240
  1. body    {
  2.         margin: 0 auto;
  3. }
  4. header  {
  5.         background-color: #0c0c0c;
  6.         color: white;
  7.         height: 100px;
  8.         width: 100%;
  9.         float: left;
  10. }
  11.  
  12. aside   {
  13.         background-color: #1e1e1e;
  14.         color: white;
  15.         width: 30%;
  16.         height: 600px;
  17.         float: left;
  18. }
  19.  
  20. main    {
  21.         background-color: #0090ff;
  22.         width: 70%;
  23.         height: 600px;
  24.         float: left;
  25. }
  26.  
  27. footer  {
  28.         background-color: #004072;
  29.         height: 100px;
  30.         width: 100%;
  31.         text-align: right;
  32.         float: left;
  33. }