-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontents.css
61 lines (53 loc) · 1019 Bytes
/
contents.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
54
55
56
57
58
59
60
61
content {
display: flex;
flex-direction: row;
align-items: flex-start;
flex: 1 0 0;
align-self: stretch;
flex-wrap: wrap;
}
.entry {
border-top: 1px solid #E2EBEC;
background: #FFF;
/* layout */
display: flex;
width: auto;
min-width: 280px;
max-width: 360px;
padding: 10px 20px;
flex-direction: column;
align-items: flex-start;
gap: 8px;
flex-grow: 1;
}
.entry-header {
display: flex;
align-items: flex-start;
gap: 85px;
align-self: stretch;
}
.headword {
color: #FF0000;
font-size: 16px;
font-weight: 700;
line-height: 16px;
/* layout */
}
.hanji {
color: #000;
font-size: 16px;
font-weight: 500;
line-height: 16px;
}
.definition {
color: #000;
font-size: 16px;
font-family: Droid Sans;
line-height: 16px;
}
.tips {
color: #3FF3DE;
font-size: 12px;
font-family: Droid Sans;
line-height: 16px;
}