-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstyles.css
53 lines (46 loc) · 910 Bytes
/
styles.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
body {
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
font-size: 14px;
padding: 12px;
}
p {
margin: 0;
line-height: 1.4em;
}
a:link, a:hover, a:active, a:visited {
text-decoration: none;
}
hr {
border: none;
border-top: 1px solid whitesmoke;
margin: 20px 0;
}
.previews {
display: flex;
flex-wrap: wrap;
gap: 8px;
width: 100%;
margin-top: 20px;
}
.preview-wrapper {
background-color: whitesmoke;
color: darkslategray;
border-radius: 12px;
padding: 15px;
display: flex;
flex-direction: column;
align-items: center;
}
.preview-image {
display: block;
object-fit: cover;
border-radius: 4px;
margin-bottom: 8px;
}
.preview-data {
font-size: 13px;
max-width: 200px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}