blob: 6a6038634c5108c05472b390f2f2af52ea5809ae (
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
34
35
36
37
38
39
40
41
42
|
.align-self-bottom {
align-self: flex-end;
}
.first-item-box {
justify-content: space-between;
}
.item-box {
display: flex;
width: 100%;
padding: 10px;
box-sizing: border-box;
}
.sample-box {
box-sizing: border-box;
align-self: flex-start;
}
.item-id {
display: inline-block;
text-align: center;
border-radius: 0.2rem;
width: 1.2rem;
height: 1.2rem;
}
.item-id-sample {
display: inline-block;
border-radius: 0.2em;
width: 1em;
height: 1em;
}
.item-id-open {
background: red;
}
.item-id-closed {
background: green;
}
|