blob: 9243cd5bdf3d922e1ecc16b995873b06643a0bbd (
plain)
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
|
/* Viewer sections */
.viewer-sections {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background: black;
color: white;
display: block;
white-space: nowrap;
}
.viewer-sections .viewer-section {
display: inline-flex;
white-space: normal;
width: 12rem;
margin: 1rem 0 1rem 1rem;
font-size: 16px;
}
.viewer-section > div {
height: 20rem;
}
.viewer-sections .section-thumbnail {
display: block;
border-radius: 1rem;
width: 12rem;
height: 8rem;
margin-bottom: 0.5rem;
background-size: cover;
background-position: center center;
}
.viewer-sections .section-media {
font-size: 14px;
}
|