1
2
3
4
5
6
7
8
9
|
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
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
/* CSS */
/*
Dictionary
*/
.dictionary {
font-size: 18px;
font-weight: bold;
color: hsl(210, 50%, 50%);
width: 220px;
}
.dic_text {
font-size: 18px;
color: hsl(210, 50%, 50%);
}
.dic_saved_date_label {
width: 120px;
text-align: right;
}
.dic_saved_date {
width: 180px;
}
.dic_num_entries {
width: 60px;
text-align: right;
}
.dic_num_entries_label {
width: 100px;
}
/*
Add new words
*/
.section {
font-size: 16px;
font-weight: bold;
color: hsl(210, 50%, 50%);
}
.subsection {
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
+
-
+
|
width: 250px;
}
#generated_words {
width: 400px;
height: 620px;
}
/*
Lexicon tab
*/
#lexicon {
width: 600px;
height: 650px;
}
.info_label {
width: 120px;
}
.data {
width: 100px;
width: 90px;
}
|