diff options
author | Sarven Capadisli <csarven@status.net> | 2010-01-21 18:18:32 +0100 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-27 16:34:17 -0500 |
commit | 61a7a7b36b4f4b504dde880695dff5113dbe2a48 (patch) | |
tree | 78ad33fe1aa5dda5443af0c9c93489b1ad17e21d /plugins/UAP/uap.css | |
parent | c52951cef5508452733f84dec7815daf4aca1016 (diff) |
Plugin for Universal Ad Package. Outputs four most widely used ad types.
Diffstat (limited to 'plugins/UAP/uap.css')
-rw-r--r-- | plugins/UAP/uap.css | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/plugins/UAP/uap.css b/plugins/UAP/uap.css new file mode 100644 index 000000000..90abe5180 --- /dev/null +++ b/plugins/UAP/uap.css @@ -0,0 +1,50 @@ +/** 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://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @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:right; +margin-right:18px; +} + +#ad_leaderboard { +width:728px; +height:90px; + +margin:29px 18px 0 0; +clear:both; +} + +#ad_wide-skyscraper { +width:160px; +height:600px; + +margin-top:18px; +margin-left:8.5%; +} |