uap.css 834 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /** Universal Ad Package styles:
  2. * Medium Rectangle 300x250
  3. * Rectangle 180x150
  4. * Leaderboard 728x90
  5. * Wide Skyscraper 160x600
  6. *
  7. * @package StatusNet
  8. * @author Sarven Capadisli <csarven@status.net>
  9. * @copyright 2010 StatusNet, Inc.
  10. * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
  11. * @link http://status.net/
  12. */
  13. .ad {
  14. border:1px solid #CCC;
  15. float:left;
  16. }
  17. #ad_medium-rectangle {
  18. width:300px;
  19. height:250px;
  20. margin-left:1.35%;
  21. margin-bottom:18px;
  22. }
  23. #ad_rectangle {
  24. width:180px;
  25. height:150px;
  26. float:none;
  27. clear:both;
  28. margin:0 auto;
  29. margin-bottom:29px;
  30. }
  31. #ad_leaderboard {
  32. width:728px;
  33. height:90px;
  34. margin:0 auto 18px;
  35. float:none;
  36. clear:both;
  37. }
  38. #ad_wide-skyscraper {
  39. width:160px;
  40. height:600px;
  41. float:right;
  42. margin-top:18px;
  43. margin-right:8.25%;
  44. }