-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.module.css
68 lines (57 loc) · 1.14 KB
/
index.module.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
.exif {
margin-bottom: calc(var(--spacer) * 2);
}
.data {
display: flex;
flex-wrap: wrap;
justify-content: center;
color: var(--text-color-light);
font-size: var(--font-size-mini);
text-align: center;
}
.data span {
display: block;
flex: 1 1 auto;
border-bottom: 1px dashed var(--border-color);
padding: var(--spacer) calc(var(--spacer) / 1.5);
white-space: nowrap;
}
.data span svg {
display: block;
margin-bottom: calc(var(--spacer) / 8);
opacity: 0.65;
}
.data span:first-child {
flex-basis: 100%;
}
@media (min-width: 40rem) {
.data {
margin-bottom: 0;
font-size: var(--font-size-small);
}
.data span {
border-left: 1px dashed var(--border-color);
border-bottom: 0;
}
.data span:first-child {
flex-basis: auto;
border-left: 0;
}
}
.map {
composes: breakout from '@layouts/Base/index.module.css';
composes: frame from '@components/Picture/index.module.css';
height: 220px;
margin-top: calc(var(--spacer) * 2);
}
@media (min-width: 40rem) {
.map {
margin-top: 0;
}
}
.map img {
border-radius: 0 !important;
}
.map > div:first-child {
background: none !important;
}