-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.module.css
More file actions
56 lines (47 loc) · 928 Bytes
/
index.module.css
File metadata and controls
56 lines (47 loc) · 928 Bytes
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
.exif {
margin-bottom: var(--space-2xl);
}
.data {
font-size: var(--fs--2);
color: var(--text-color-light);
display: flex;
flex-wrap: wrap;
justify-content: center;
text-align: center;
}
.data span {
display: flex;
flex: 1 1 auto;
align-items: center;
flex-direction: column;
white-space: nowrap;
padding: var(--space-m) var(--space-s);
border-bottom: 1px dashed var(--border-color);
}
.data span svg {
display: block;
margin-bottom: var(--space-3xs);
opacity: 0.65;
}
@media (min-width: 40rem) {
.data {
font-size: var(--fs--1);
}
.data span {
border-left: 1px dashed var(--border-color);
border-bottom: 0;
}
.data span:last-child {
border-right: 1px dashed var(--border-color);
}
}
.map {
composes: frame from '@/components/ui/Picture/index.module.css';
height: 220px;
}
.map img {
border-radius: 0;
}
.map > div:first-child {
background: none;
}