1
2
3
4
5
6
7
8
9
10
11
|
/* CSS */
.section {
font-size: 16px;
font-weight: bold;
color: hsl(210, 50%, 50%);
}
.option {
font-size: 10px;
}
|
|
|
|
>
>
>
>
>
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
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
|
/* CSS */
.section {
font-size: 16px;
font-weight: bold;
color: hsl(210, 50%, 50%);
}
.subsection {
font-size: 14px;
font-weight: bold;
color: hsl(210, 50%, 50%);
}
.option {
width: 120px;
font-size: 12px;
}
.m_left {
margin-left: 20px;
}
.m_left2 {
margin-left: 40px;
}
#generated_words {
width: 400px;
}
#lexicon {
width: 600px;
}
|