blob: 08917bf51aca2aa5329773ba5fa4732b2d2da78e (
plain)
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
|
body {
max-width: 20cm;
margin-left: auto;
margin-right: auto;
padding: 0 8px;
}
li {
margin-top: 4px;
margin-bottom: 4px;
}
.thumb-list {
padding-left: 0;
}
.thumb-list li {
display: flex;
flex-direction: row;
align-items: center;
border-bottom: 1px solid #888;
margin-top: 0;
margin-bottom: 0;
padding: 4px;
}
.thumb-list li:first-child {
border-top: 1px solid #888;
}
.thumb-list li img {
margin-right: 10px;
}
|