blob: 171ab84e4cfd6c17325d2e8e22748d2f51328f80 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/* vitrine */
.vitrine .heading {
font-family: "Freight Text", serif;
font-size: 3rem;
line-height: 1.28;
width: 80%;
margin: 0 auto;
padding-bottom: 2rem;
text-align: center;
}
.vitrine .citation {
width: 45rem;
margin: 0 auto;
padding: 1rem 0;
font-family: "Neue Haas Unica";
color: #888;
}
.vitrine-items {
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: space-between;
padding: 0 1rem;
}
.vitrine-items .vitrine-item {
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: space-between;
height: calc(45vh - 6rem);
}
.vitrine-items .vitrine-item .vitrine-image {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 80%;
cursor: pointer;
}
.vitrine-items .vitrine-item .vitrine-image img {
max-width: 100%;
max-height: 100%;
pointer-events: none;
}
.vitrine-items .vitrine-item .zoomPlus {
cursor: pointer;
}
.vitrine-items .vitrine-item:hover .zoomPlus path {
stroke: #000;
}
|