(no commit message)
[freeside.git] / fs_selfservice / fri / theme / global.css
1 /*
2  * Global Styles
3  */
4
5 body {
6   color: #333;
7   background-color: white;
8   font-family: Verdana, Helvetica, Arial, sans-serif;
9 }
10
11 div {
12   font-family: Verdana, Helvetica, Arial, sans-serif;
13 }
14
15 h2 {
16   font-size: 1.2em;
17   font-family: "Trebuchet MS", Arial, Helvetica, Tahoma, Verdana, sans-serif;
18   margin-top: 0;
19   margin-bottom: 0;
20   color: #555;
21 }
22
23 h3 {
24   font-size: 1em;
25   margin-top: 1.5em;
26   font-family: "Trebuchet MS", Arial, Helvetica, Tahoma, Verdana, sans-serif;
27   margin-top: 0;
28   margin-bottom: 0;
29   color: #555;
30 }
31
32
33 h4 {
34   font-family: "Trebuchet MS", Arial, Helvetica, Tahoma, Verdana, sans-serif;
35   margin-top: 0;
36   margin-bottom: 0;
37   color: #555;
38   margin-top:   1.5em
39 }
40
41
42
43 sup {
44   font-size: 9px
45 }
46
47 small small {
48   font-family: Verdana, Helvetica, Arial, sans-serif;
49   font-weight: bold;
50 }
51
52
53
54 /***** info popups *****/
55 a.info {
56         position:relative;
57         color:black;
58         border-bottom:1px dashed #ccc;
59 }
60 /* Added to solve the z-order problem of IE 
61 */
62 a.info:hover {
63         background-color: #FFA178;
64   z-index:2;
65 }
66 /* End */
67 a.info span{
68   display: none;
69         background-color: #FFA178;
70 }
71 a.info:hover span{
72         display:block;
73         position:absolute;
74         z-index:1;
75         top:2em;
76         left:-10em;
77         width:25em;
78         border:1px solid #F2AF1D;
79         background-color:#FDF1D5;
80         color:#000;
81         text-align:justify;
82         font-size:10px;
83         font-weight:normal;
84         padding:3px;
85         line-height:15px;
86 }
87