-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
116 lines (102 loc) · 2.07 KB
/
stylesheet.css
File metadata and controls
116 lines (102 loc) · 2.07 KB
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
.skosmos-widget-bibbikatalog .error {
color: #8b0000;
font-style: italic;
padding-left: 15px;
}
.skosmos-widget-bibbikatalog .bibbi-item-list,
.skosmos-widget-bibbikatalog .bibbi-item-detail,
.skosmos-widget-bibbikatalog .loading,
.skosmos-widget-bibbikatalog .error {
padding: 15px;
max-height: 400px;
overflow-y: scroll;
background: white;
}
.bibbi-item-list {
display: grid;
column-gap: 0;
row-gap: 0;
grid-template-columns: repeat(2, 1fr);
}
ul.manifestations {
padding: 0;
margin: 0;
}
ul.manifestations li {
font-size: 100%;
display: flex;
flex: 1 1 auto;
}
.manifestations img {
max-width: 100%;
display: block;
height: 100px;
margin-bottom: 8px;
border: 1px solid #eee;
box-shadow: 1px 1px 1px #777;
margin-right: 1em;
}
@media (min-width: 500px) {
.bibbi-item-list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
.bibbi-item-list { grid-template-columns: repeat(4, 1fr); }
}
.bibbi-item-list .item {
justify-self: stretch;
align-self: stretch;
text-align: center;
}
.bibbi-item-list .item a {
width: 100%;
display: block;
padding: 5px;
}
.bibbi-item-list .item a:hover {
text-decoration: none;
background: rgba(200,200,210,0.3);
}
.bibbi-item-list .item img {
max-width: 100%;
display: inline-block;
height: 140px;
border: 1px solid #eee;
box-shadow: 1px 1px 1px #777;
}
.bibbi-item-list .item.film_dvd img {
height: 120px;
}
.bibbi-item-list .title {
font-size: 110%;
}
.bibbi-item-list .creator_year {
font-size: 100%;
}
.bibbi-item-list .item.film .doc_type::before {
content: '🎞️';
}
.bibbi-item-list .item.spill .doc_type::before {
content: '🎮 ';
}
.bibbi-item-list .not_approved {
color: #aaa;
}
.authorityLink {
display: inline-block;
margin: 0 .3em;
}
.person::before {
content: '👤';
}
.organization::before {
content: '🏢'; // or 👥 ?
}
.work::before {
content: '📖';
}
.place::before {
content: '🌐';
}
.topic::before {
content: '🏷️';
}