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

Untitled

By: a guest on Sep 15th, 2012  |  syntax: None  |  size: 1.20 KB  |  hits: 8  |  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.  
  2. html, body {
  3.   height: 100%;
  4.   background-color: #efefef;
  5. }
  6.  
  7. body {
  8.   padding-top: 50px;
  9. }
  10.  
  11. .pageWrapper {
  12.   width: 60%;
  13.   margin: auto;;
  14.     background: #ffffff;
  15.  
  16.   border: 1px solid;
  17.   padding-left: 20px;
  18.   padding-right: 20px;
  19.   padding-top: 10px;
  20.   /* box shadow */
  21.   -webkit-box-shadow: 0px 0px 7px rgba(50, 50, 50, 0.75);
  22.   -moz-box-shadow:    0px 0px 7px rgba(50, 50, 50, 0.75);
  23.   box-shadow:         0px 0px 7px rgba(50, 50, 50, 0.75);
  24.  
  25.   /* border radius */
  26.   -webkit-border-radius: 50px;
  27.   -webkit-border-top-left-radius: 5px;
  28.   -webkit-border-bottom-right-radius: 5px;
  29.   -moz-border-radius: 50px;
  30.   -moz-border-radius-topleft: 5px;
  31.   -moz-border-radius-bottomright: 5px;
  32.   border-radius: 50px;
  33.   border-top-left-radius: 5px;
  34.   border-bottom-right-radius: 5px;
  35. }
  36. .header {
  37.   border-bottom: 1px solid;
  38. }
  39. .content {
  40.   border-bottom: 1px solid;
  41.   margin-top: 30px;
  42.   margin-bottom: 30px;
  43. }
  44.  
  45. .blogInfo {
  46.   overflow: hidden;
  47. }
  48. #copyright-text p {
  49.   text-align: right;
  50.   font-family: "Sans";
  51.   font-size: 10px;
  52. }
  53. #title {
  54.   float: left;
  55. }
  56. #description p {
  57.   font-family: "Trebuchet MS";
  58.   font-size: 12px;
  59. }
  60. .rightSide {
  61.   float: right;
  62.   position: relative;
  63.   left: -30px;
  64.   bottom: -40px;
  65. }
  66. .clear-both {
  67.   clear: both;
  68. }