blob: ee4b04487e1e171fa5241caca77e8ad22356b24c (
plain) (
blame)
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
|
#header {
background-color: #003459;
padding-top: 30px;
padding-bottom: 20px;
}
#header h1 {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
text-align: center;
color: white;
}
#container {
border-radius: 8px;
}
#wrapper {
color: #003459;
}
.btnType1 {
background-color: #003459;
color: white;
}
.btnType2 {
background-color: white;
color: #003459;
border-color: #003459;
}
.selectedDatasetClass {
/*border-color: 2px solid #003459;*/
background-color: lightblue;
}
ul li:hover {
background-color: lightblue;
}
|