-
Notifications
You must be signed in to change notification settings - Fork 1
/
report.css
142 lines (142 loc) · 2.49 KB
/
report.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
body {
max-width: 800px;
margin-left: auto;
margin-right: auto;
color: DimGray;
font-family: Georgia;
line-height: 150%;
}
h2, h3 {
color: #CC6600;
}
/* Needed to avoid overlap of figure and controls */
img {
padding-left: 30px;
padding-top: 30px;
padding-right: 30px;
padding-bottom: 30px;
}
/* https://www.w3schools.com/howto/howto_js_slideshow.asp */
* {box-sizing:border-box}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Hide the images by default */
.mySlides {
display: none;
}
/* Hide untoggled by default */
.toggled {
display: none;
}
.untoggled {
display: none;
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: black;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(1,1,1,0.8);
}
/* Caption text */
.text {
color: black;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 20px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext, .toggler {
color: black;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* Toggler */
.toggler {
right: 0;
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #717171;
}
/* Fading animation */
.fade {
animation-name: fade;
animation-duration: 1.5s;
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
}
/* TimeStamp etc */
.timestamp {
padding: 5px;
border: 1px solid Silver;
line-height: 100%;
background-color: WhiteSmoke;
}
/* Table of kmers */
.divkmertab {
height: 300px;
overflow-y: auto;
overflow-x: auto;
}
.kmertab {
text-align: center;
vertical-align: middle;
font-family: monospace;
font-size: 90%;
color: #202020;
border-spacing: 0px;
}
.kmertab th, td {
padding: 3px;
}
.kmertab tr:nth-child(even) {
background-color: WhiteSmoke;
}
pre {
white-space: pre-wrap;
}