Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 13th, 2012  |  syntax: None  |  size: 0.79 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /*In the actual div stylings. You should only name these things if they are things you don't need to change/traverse*/
  2.  
  3. body {
  4.     width:100%;
  5.     height:96%;
  6.     background-color: white;
  7. }
  8.  
  9. span {
  10.  
  11.     border: 5px solid white;
  12.     color: white;
  13.     -moz-border-radius: 20px;
  14.     borde-radius: 20px;
  15.     font-size: 30px;
  16.     margin-left: auto;
  17.     margin-right: auto;
  18.  
  19. }
  20.  
  21. li {
  22.     padding: 10px;
  23.     font-size: 20;
  24. }
  25.  
  26. p {
  27.     font-size: 30;
  28. }
  29.  
  30. #topdiv {
  31.     width: 90%;
  32.     height: 10%;
  33.  
  34. }
  35.  
  36. #bodydiv {
  37.     width: 95%;
  38.     height: 85%;
  39.     border: 3px solid white;
  40.     background: black;
  41.     color: white;
  42.  
  43. }
  44.  
  45. #conclusion {
  46.     width: 100%;
  47.     height: 100%;
  48.     overflow: hidden;
  49.     border: 10px solid white;
  50.     -moz-border-radius: 50px;
  51.     borde-radius: 50px;
  52.     color: white;
  53.     background-color: black;
  54. }