summaryrefslogtreecommitdiff
path: root/fs_selfservice/fri/theme/global.css
blob: cd97aa285b76486868f47a886a431f05de51f894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * Global Styles
 */

body {
  color: #333;
  background-color: white;
  font-family: Verdana, Helvetica, Arial, sans-serif;
}

div {
  font-family: Verdana, Helvetica, Arial, sans-serif;
}

h2 {
  font-size: 1.2em;
  font-family: "Trebuchet MS", Arial, Helvetica, Tahoma, Verdana, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  color: #555;
}

h3 {
  font-size: 1em;
  margin-top: 1.5em;
  font-family: "Trebuchet MS", Arial, Helvetica, Tahoma, Verdana, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  color: #555;
}


h4 {
  font-family: "Trebuchet MS", Arial, Helvetica, Tahoma, Verdana, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  color: #555;
  margin-top:	1.5em
}



sup {
  font-size: 9px
}

small small {
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-weight: bold;
}



/***** info popups *****/
a.info {
	position:relative;
	color:black;
	border-bottom:1px dashed #ccc;
}
/* Added to solve the z-order problem of IE 
*/
a.info:hover {
	background-color: #FFA178;
  z-index:2;
}
/* End */
a.info span{
  display: none;
	background-color: #FFA178;
}
a.info:hover span{
	display:block;
	position:absolute;
	z-index:1;
	top:2em;
	left:-10em;
	width:25em;
	border:1px solid #F2AF1D;
	background-color:#FDF1D5;
	color:#000;
	text-align:justify;
	font-size:10px;
	font-weight:normal;
	padding:3px;
	line-height:15px;
}