diff options
-rw-r--r-- | public/stylesheets/main.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index 043c0cac9..6ea870d61 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -955,3 +955,21 @@ div.act_link img { border-width: 3px 0 0 0; border-style: solid; } + +/*------------------------------------------------ interstitial advert */ + +#everypage { + background-color: #ffcc99; + border: solid 2px #ff6600; border-top: none; /* No top border, so looks like coming out of top */ + opacity: 0.97; + -moz-border-radius-bottomleft: 10px; -moz-border-radius-bottomright: 10px; /* Rounded bottom corners */ + padding: 4px; + position: fixed; + width: 70%; left: 15%; /* So centered on screen, always visible */ + z-index: 200; /* So on top */ + max-height: 95%; overflow: auto; /* So on e.g. 800x600 scrollbar appears */ +} +#everypage h2, #everypage h3, #foi2009 h2, #foi2009 h3 { + margin: 0.5em 0; +} + |