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
| | .branch-overview,
.branch-overview:link,
.branch-overview:visited {
display: block;
border-image: linear-gradient(to right, gray, transparent) 1;
border-style: none none solid none;
border-width: thin thick;
color: #4D4D4D;
padding: 20px 70px 20px 10px;
transition: border-width .2s cubic-bezier(.22,.61,.36,1);
}
.branch-overview:active,
.branch-overview:focus,
.branch-overview:hover {
background-color: gold;
background-image: url("/static/base/img/link-arrow-shaper.svg");
background-position: right;
background-repeat: no-repeat;
background-size: auto 100%;
border-image: linear-gradient(to right, #333, white, white) 1;
border-style: none none solid solid;
}
.branch-overview-heading {
margin-bottom: 10px;
}
.publication-info {
margin-bottom: 0px;
}
.scientific-mark {
display: inline-block;
cursor: help;
height: 28px;
width: 28px;
}
|