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
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
-
-
-
-
+
-
-
-
-
-
-
-
-
-
|
/* 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;
.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 {
|
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
+
+
+
+
+
|
}
#generated_words_table {
width: 400px;
height: 600px;
}
.delete_entry {
color: hsl(0, 100%, 50%);
font-weight: bold;
}
/*
Lexicon tab
*/
#lexicon_table {
width: 600px;
height: 650px;
}
.info_label {
width: 120px;
}
.data {
width: 90px;
}
|