summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/player/components.utility/media.css
blob: 1519c4017c72b148047908a506f1f0cc3bf06a4e (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
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
/* carousel */

.carousel-container {
  padding: 1rem;
}
.carousel-item {
  height: calc(100vh - 9rem);
  width: 50vw;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

/* gallery */

.gallery-container {
  overflow-x: scroll;
  width: 100%;
  padding: 1rem;
}
.gallery-scroll {
  display: flex;
  flex-direction: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.gallery-item {
  padding-right: 1rem;
}
.gallery-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25rem;
}
.gallery-image img {
  max-height: 25rem;
}
.gallery-caption {
  margin-top: 0.5rem;
}

.gallery-container::-webkit-scrollbar {
  cursor: pointer;
  user-select: none;
  height: 4px
}
.gallery-container::-webkit-scrollbar-button {
  display: block;
  width: 0;
  height: 0;
}
.gallery-container::-webkit-scrollbar-track-piece {
  background:rgba(211,211,211,0.8);
}
.gallery-container::-webkit-scrollbar-thumb {
  display: block;
  background: #000;
}


/* 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 .cross {
  stroke: #000;
  stroke-width: 0.5;
}
.vitrine-items .vitrine-item:hover .zoomPlus .ring {
  fill: #fff;
}
.vitrine-items .vitrine-item .zoomPlus .ring-inner {
  stroke: transparent;
  fill: transparent;
}
.vitrine-items .vitrine-item:hover .zoomPlus .ring-inner {
  fill: #fff;
  stroke: #fff;
}
.inline-element.vitrine .heading {
  padding-top: 8rem;
}