blob: ed260d5c3da6461f7c38e658980391ff6af1441f (
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
54
55
56
|
.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-card {
display: flex;
align-items: center;
}
.item-img {
padding: 1px;
background: white;
border-radius: 3px;
}
.item-title {
padding-left: 5px;
color: black;
text-decoration: none;
}
.sample-box {
box-sizing: border-box;
align-self: flex-start;
}
.sample-container {
display: flex;
align-items: center;
}
.sample-color-block {
border-radius: 0.2em;
width: 1em;
height: 1em;
margin-right: 2px;
}
.sample-color-block-open {
background: tomato;
}
.sample-color-block-closed {
background: mediumspringgreen;
}
|