1/**
2 @file      noiewarning/style.css
3 @brief     NoIEWarning Cascade Style Sheet
4 @author    Luis Machuca Bezzaza
5 @version   0.618
6
7This file contains the default stylesheet for the NoIEWarning plugin.
8
9**/
10
11
12div#noiewarning {
13  margin: 0 auto;
14  max-width: 80%;
15  padding: 4px 0;
16  padding-left: 20px;
17  font-size: 90%;
18  font-family: sans-serif;
19  background-color: __background_neu__;
20  border: 4px solid __text_neu__;
21  border-radius: 4px;
22  box-shadow: 2px 2px 4px __background_alt__;
23}
24
25/**
26 * Generic styles
27 */
28div#noiewarning > p {
29  }
30
31div#noiewarning > p a {
32  line-height: 1.5em;
33}
34
35div#noiewarning > p a:hover {
36  text-decoration: none !important;
37  }
38
39