blob: 89a0f0ce6b2f7c8f2ac294ad3bb41763d0c088f8 (
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
43
44
45
46
47
48
49
50
51
52
53
|
.align-self-bottom {
align-self: flex-end;
}
.item-box {
display: flex;
width: 100%;
padding: 5px;
box-sizing: border-box;
}
.first-item-box {
justify-content: space-between;
}
.item-id {
display: inline-block;
text-align: center;
border-radius: 0.2rem;
width: 1.2rem;
height: 1.2rem;
}
.item-id-open {
background: red;
}
.item-id-closed {
background: green;
}
.item-title {
margin-left: 5px;
color: black;
text-decoration: none;
}
.sample-box {
box-sizing: border-box;
align-self: flex-start;
}
.sample-container {
display: flex;
align-items: center;
}
.item-id-sample {
border-radius: 0.2em;
width: 1em;
height: 1em;
margin-right: 2px;
}
|