blob: 7f05af0f9c538b6cf17e63dd8346c9b887dbb7c7 (
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
40
41
42
|
#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;
}
#divInputs {
margin-left: 20px;
}
#divOutputs {
margin-left: 20px;
}
|