-
Notifications
You must be signed in to change notification settings - Fork 1
/
PW-forecast.css
98 lines (86 loc) · 2.17 KB
/
PW-forecast.css
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
88
89
90
91
92
93
94
95
96
97
98
/*--------------------------------------------------
tabbertab
--------------------------------------------------*/
/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */
/*--------------------------------------------------
REQUIRED to hide the non-active tab content.
But do not hide them in the print stylesheet!
--------------------------------------------------*/
.tabberlive .tabbertabhide {
display:none;
}
/*--------------------------------------------------
.tabber = before the tabber interface is set up
.tabberlive = after the tabber interface is set up
--------------------------------------------------*/
.tabber {
}
.tabberlive {
margin-top:1em;
}
/*--------------------------------------------------
ul.tabbernav = the tab navigation list
li.tabberactive = the active tab
--------------------------------------------------*/
ul.tabbernav
{
margin:0 0 3px 0;
padding: 0 3px ;
border-bottom: 0px solid #778;
font: bold 12px Verdana, sans-serif;
}
ul.tabbernav li
{
list-style: none;
margin: 0;
min-height:40px;
display: inline;
}
ul.tabbernav li a
{
padding: 3px 0.5em;
min-height: 40px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
margin-left: 3px;
border: 1px solid #778;
border-bottom: none;
background: #DDE !important;
text-decoration: none !important;
}
ul.tabbernav li a:link { color: #448 !important;}
ul.tabbernav li a:visited { color: #667 !important; }
ul.tabbernav li a:hover
{
color: #000;
background: #AAE !important;
border-color: #227;
}
ul.tabbernav li.tabberactive a
{
background-color: #fff !important;
border-bottom: none;
}
ul.tabbernav li.tabberactive a:hover
{
color: #000;
background: white !important;
border-bottom: 1px solid white;
}
/*--------------------------------------------------
.tabbertab = the tab content
Add style only after the tabber interface is set up (.tabberlive)
--------------------------------------------------*/
.tabberlive .tabbertab {
padding:5px;
border:0px solid #aaa;
border-top:0;
overflow:auto;
}
/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
display:none;
}
.tabberlive .tabbertab h3 {
display:none;
}