1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* CSS */
button {
font-weight: bold;
}
/*
Dictionary
*/
.dictionary {
font-size: 18px;
font-weight: bold;
color: hsl(210, 50%, 50%);
}
.dic_text {
font-size: 18px;
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* CSS */
button {
font-weight: bold;
}
/*
Dictionary
*/
.dictionary {
font-size: 18px;
font-weight: bold;
color: hsl(210, 50%, 50%);
}
.dic_text {
font-size: 18px;
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
*/
#lexicon_table {
width: 600px;
height: 650px;
}
.info_label {
width: 120px;
}
.data {
width: 90px;
}
|
>
>
>
>
>
>
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
*/
#lexicon_table {
width: 600px;
height: 650px;
}
.list_header {
padding: 2px 10px;
font-weight: bold;
background-color: hsl(0, 0%, 95%);
border-bottom: 1px solid hsl(0, 0%, 50%);
}
.info_label {
width: 120px;
}
.data {
width: 90px;
}
|