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

Untitled

By: a guest on May 1st, 2012  |  syntax: None  |  size: 0.88 KB  |  hits: 11  |  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. div.camplogo
  2. {
  3.     text-align: center;
  4.     position: absolute;
  5.     background: rgba(255, 255, 255, 0.5);
  6.     width: 240px;
  7.     height: 116px;
  8.     left: 75px;
  9.     top: 0px;
  10.     z-index: 1;
  11.     border-top: 15px solid #e56102;
  12.     border-left: 30px solid #e56102;
  13.     border-right: 10px solid #e56102;
  14.     border-bottom: 10px solid #e56102;
  15.     border-top-left-radius:75px 50px;
  16.     border-bottom-left-radius: 75px 50px;
  17.     border-top-right-radius: 50px 50px;
  18.     border-bottom-right-radius: 50px 50px;
  19.     -webkit-border-radius: 10px;
  20. }
  21.  
  22. #HeaderDiv
  23. {
  24.     -webkit-animation: move-header 15s infinite linear;
  25.     -moz-animation: move-header 15s infinite linear;
  26. }
  27.  
  28. @-webkit-keyframes move-header  {
  29.         from    { background-position: 0 0px; }
  30.         to      { background-position: -150px 0px; }
  31. }
  32.  
  33. @-moz-keyframes move-header  {
  34.         from    { background-position: 0 0px; }
  35.         to      { background-position: -150px 0px; }
  36. }