53
54
55
56
57
58
59
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
|
53
54
55
56
57
58
59
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
|
-
-
+
+
-
-
+
+
+
-
+
+
|
#categories {
display: flex;
padding: 10px 0;
}
#another_word_section {
opacity: .33;
#word_section2 {
display: none;
}
.category {
padding: 10px;
border-radius: 3px;
cursor: pointer;
}
.category:hover {
background-color: hsl(0, 0%, 90%);
}
.empty_section {
padding: 80px;
#section_vide {
padding: 50px;
font-size: 24px;
text-align: center;
background-color: hsl(0, 20%, 90%);
color: hsl(0, 0%, 50%);
color: hsl(0, 20%, 50%);
border-radius: 5px;
}
.section {
display: none;
padding: 10px;
}
.container {
|
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
+
+
+
+
+
+
+
+
|
}
#actions {
display: none;
padding: 10px;
}
#results {
padding: 10px;
background-color: hsl(210, 10%, 90%);
border-radius: 3px;
margin: 5px 0;
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
}
#buttonline {
text-align: right;
}
#add_to_dictionary {
display: inline-block;
|