38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
padding: 5px 50px;
background-color: hsla(0, 0%, 75%, 1);
color: hsla(0, 0%, 96%, 1);
border-radius: 5px;
text-align: center;
font-size: 20px;
}
#wordlist ul {
margin: 0 0 5px 40px;
}
#wordlist b {
background-color: hsla(150, 50%, 50%, 1);
color: hsla(0, 0%, 96%, 1);
padding: 2px 5px;
border-radius: 2px;
text-decoration: none;
}
#wordlist b.unknown {
background-color: hsla(0, 50%, 50%, 1);
}
#wordlist b.nb {
background-color: hsla(210, 50%, 50%, 1);
}
#wordlist b.mbok {
background-color: hsla(60, 50%, 50%, 1);
}
#wordlist s {
color: hsla(0, 0%, 60%, 1);
text-decoration: none;
}
#wordlist .textline {
text-decoration: bold;
|
>
>
>
|
>
>
>
|
>
>
>
>
>
>
|
>
>
>
|
|
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
|
padding: 5px 50px;
background-color: hsla(0, 0%, 75%, 1);
color: hsla(0, 0%, 96%, 1);
border-radius: 5px;
text-align: center;
font-size: 20px;
}
#wordlist .token {
margin: 8px;
}
#wordlist ul {
margin: 0 0 5px 40px;
}
#wordlist b {
background-color: hsla(150, 10%, 50%, 1);
color: hsla(0, 0%, 96%, 1);
padding: 2px 5px;
border-radius: 2px;
text-decoration: none;
}
#wordlist b.WORD {
background-color: hsla(150, 50%, 50%, 1);
}
#wordlist b.ELPFX {
background-color: hsla(150, 30%, 50%, 1);
}
#wordlist b.UNKNOWN {
background-color: hsla(0, 50%, 50%, 1);
}
#wordlist b.NUM {
background-color: hsla(180, 50%, 50%, 1);
}
#wordlist b.COMPLEX {
background-color: hsla(60, 50%, 50%, 1);
}
#wordlist b.SEPARATOR {
background-color: hsla(210, 50%, 50%, 1);
}
#wordlist b.LINK {
background-color: hsla(270, 50%, 50%, 1);
}
#wordlist s {
color: hsla(0, 0%, 60%, 1);
text-decoration: none;
}
#wordlist .textline {
text-decoration: bold;
|