-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollection.css
49 lines (39 loc) · 1.1 KB
/
collection.css
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
/* Gallery */
/*Remove gallery padding intended to offset from title*/
.notion-collection-gallery {
padding: 0 !important;
}
/* ---------------------- */
.notion-collection-card {
transition: var(--transition-hover) !important;
background: var(--color-bg-dark-darker) !important;
box-shadow: none !important;
margin-bottom: 0em !important;
}
.notion-collection-card:hover {
opacity: 0.7 !important;
}
/*Remove corner radius on gallery cards*/
.notion-collection-card,
.notion-collection-card__cover img {
border-radius: 0 !important;
}
.notion-collection-card__cover {
border: none !important;
margin-bottom: 0.25em !important;
}
.notion-collection-card__cover.large,
.notion-collection-card__cover.large span {
height: 325px !important;
max-height: 100vw !important;
}
/* -------------------*/
.notion-collection-list__item {
transition: var(--transition-hover) !important;
border: 1px transparent solid !important;
min-height: 50px !important;
}
.notion-collection-list__item:hover {
border: 1px white solid !important;
background: none !important;
}