12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /** Universal Ad Package styles:
- * Medium Rectangle 300x250
- * Rectangle 180x150
- * Leaderboard 728x90
- * Wide Skyscraper 160x600
- *
- * @package StatusNet
- * @author Sarven Capadisli <csarven@status.net>
- * @copyright 2010 StatusNet, Inc.
- * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
- * @link http://status.net/
- */
- .ad {
- border:1px solid #CCC;
- float:left;
- }
- #ad_medium-rectangle {
- width:300px;
- height:250px;
- margin-left:1.35%;
- margin-bottom:18px;
- }
- #ad_rectangle {
- width:180px;
- height:150px;
- float:none;
- clear:both;
- margin:0 auto;
- margin-bottom:29px;
- }
- #ad_leaderboard {
- width:728px;
- height:90px;
- margin:0 auto 18px;
- float:none;
- clear:both;
- }
- #ad_wide-skyscraper {
- width:160px;
- height:600px;
- float:right;
- margin-top:18px;
- margin-right:8.25%;
- }
|