123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- @file noiewarning/style.css
- @brief NoIEWarning Cascade Style Sheet
- @author Luis Machuca Bezzaza
- @version 0.618
- This file contains the default stylesheet for the NoIEWarning plugin.
- **/
- div#noiewarning {
- margin: 0 auto;
- max-width: 80%;
- padding: 4px 0;
- padding-left: 20px;
- font-size: 90%;
- font-family: sans-serif;
- background-color: __background_neu__;
- border: 4px solid __text_neu__;
- border-radius: 4px;
- box-shadow: 2px 2px 4px __background_alt__;
- }
- /**
- * Generic styles
- */
- div#noiewarning > p {
- }
- div#noiewarning > p a {
- line-height: 1.5em;
- }
- div#noiewarning > p a:hover {
- text-decoration: none !important;
- }
|