-
Notifications
You must be signed in to change notification settings - Fork 9
/
HPC_css.css
74 lines (67 loc) · 1.39 KB
/
HPC_css.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
table.scrollable-table-no-label {
overflow-x: auto;
position: relative;
display: block;
}
table.scrollable-table {
overflow-x: scroll;
position: relative;
display: block;
}
table.scrollable-table::before {
content: "Scroll →";
font-weight: bold;
animation-name: highlight-bounce;
animation-duration: 1.5s;
animation-iteration-count: infinite;
position: absolute;
top: 50%;
left: 10px;
z-index: 10;
color: black;
background-color: #dcdcdcbf;
padding-left:5px;
padding-right:5px;
}
table.scrollable-table:hover::before {
display: none;
}
@keyframes highlight-bounce {
0% {
margin-left:0px
}
20% {
margin-left:5px
}
40% {
margin-left:0px
}
80% {
margin-left:0px
}
}
.imported-authors div.corresponding_author {
background-color: ghostwhite;
}
.imported-authors div.corresponding_author div.elementor-author-box__name::after {
content: "(Corresponding author)";
font-size: medium;
}
.imported-authors div.author div.elementor-author-box__name::after {
content: "(Author)";
font-size: medium;
}
.imported-authors div.reviewing_author div.elementor-author-box__name::after {
content: "(Reviewer)";
font-size: medium;
}
.imported-authors div.elementor-widget-author-box {
padding: 10px;
margin: 5px;
margin-bottom: 20px;
}
@media (prefers-color-scheme: dark) {
.imported-authors div.corresponding_author {
background-color: #6b6b6b;
}
}