blob: 894725bb265a61d5fe997136ef4b6b7941c988c4 (
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
88
89
90
91
92
|
/* Page CSS*/
body {
background-color: #ECEDEE;
font: 16px/1.5em Helvetica Neue,helvetica,Arial,sans-serif;
color: #2E2925;
}
#title {
font-size: 30px;
}
#tests {
font-size: 20px;
color: white;
}
#test_unit {
position: relative;
left: 200px;
}
#testcase_selected{
position: relative;
left: 50px;
font-size: 20px;
color: #00ADBB;
}
/* Chart CSS */
.chart {
border: 1px dashed #2E2925;
margin: 5px;
padding: 2px;
width: 600px;
height:300px;
float:left;
}
/* Dygraph CSS */
/* This applies to the title, x-axis label and y-axis label */
#div_g .dygraph-label {
font-family: Helvetica Neue,helvetica,Arial,sans-serif;
}
/* This rule only applies to the chart title */
#div_g .dygraph-title {
font-size: 12px;
color : #2E2925;
}
/* This rule only applies to the y-axis label */
#div_g .dygraph-ylabel {
font-size: 10px;
color : #2E2925;
}
.btn-default{
font-size: 20px;
background-color: #FFFFFF; /*#0095A2*/
}
.dropdown-header{
font-size: 20px;
background-color: #FFFFFF; /*#0095A2*/
}
.dropdown-menu{
font-size: 16px;
background-color: #FFFFFF; /*#0095A2*/
}
.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
background-color: #00ADBB;
color: #2E2925;
}
.nav-pills > li > a{
font-size: 20px;
background-color: #0095A2;
color: #2E2925;
}
.nav-pills > li.active > a{
font-size: 20px;
background-color: #FFFFFF;
color: #2E2925;
}
/* Overrides dygraph-legend */
.dygraph-legend {
font-size: 10px !important;
width: 400px !important;
text-align: left !important;
left: 200px !important;
}
|