-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
74 lines (69 loc) · 1.42 KB
/
styles.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
/* This is a 'default' style that should try to match Dataverse.
* It should minimize the differences when using that 'Metrics' link
* from within Dataverse to get to the metrics page.
*
* See: https://guides.dataverse.org/en/latest/style/foundations.html
*/
a {
color: #337AB7;
}
a:hover {
color: #23527C;
}
/* metrics download */
.metrics-download-button {
float: right;
z-index: 25;
position: relative;
text-decoration: none;
}
/* metrics not-download, but referring to other download */
.metrics-download-redundant {
float: right;
color: lightgrey;
z-index: 25;
position: relative;
text-decoration: none;
}
#title, #subtitle {
text-align: center;
}
#dvtree {
background: cornsilk;
max-height: 250px;
overflow-y: auto;
padding-left: 1em;
}
#dvselect {
background: aliceblue;
}
#selectString {
padding-left: 1em;
}
#metrics-page-header {
margin-bottom: 50px;
}
/* the graphs */
.viz {
height: 500px;
margin: 3em;
}
/* panels/cards containing the graphs */
.card {
margin-bottom: 15px;
}
.card-header a {
text-decoration: none;
}
/* collapse indicator */
.card-header .fa {
transition: .3s transform ease-in-out;
}
.card-header .collapsed .fa {
transform: rotate(90deg);
}
/* separate graphs more clearly vertically */
/* bottom line for each column, except when on the last row within a panel body */
.card-body .row:not(:last-child) div[class^="col-"] {
border-bottom: solid lightgrey 1px;
}