Newer
Older
max-width: 10rem;
width: 10rem;
overflow: scroll;
.thumbnail {
margin: 1rem;
img {
width: 6rem;
}
}
}
.pages {
overflow: scroll;
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
}
svg.ocr_status {
/* Use the current text color as the icon’s fill color. */
fill: currentColor;
/* Inherit the text’s size too. Also allows sizing the icon by changing its font-size. */
width: 1em;
height: 1em;
/* The default vertical-align is `baseline`, which leaves a few pixels of space below the icon. Using `center` prevents this. For icons shown alongside text, you may want to use a more precise value, e.g. `vertical-align: -4px` or `vertical-align: -0.15em`. */
vertical-align: middle;
/* Paths and strokes that overflow the viewBox can show in IE11. */
overflow: hidden;
}
svg.unknown {
fill: #aaa;
}
svg.received {
fill: orange;
}
svg.started {
fill: None;
animation: rotate_svg 1s linear infinite;
}
svg.succeeded {
fill: #0aa70a;
}
svg.failed {
fill: #e22e2e;;
}
@keyframes rotate_svg {
to {
transform: rotate(360deg);
}
}