102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
#menu li {
padding: 10px 5px;
border-bottom: 1px solid hsl(210, 10%, 90%);
text-align: center;
cursor: pointer;
color: hsl(210, 10%, 50%);
list-style-type: none;
}
#menu li:hover {
background-color: hsl(210, 10%, 92%);
}
#page {
background-color: hsl(210, 0%, 100%);
height: 500px;
overflow: auto;
|
>
>
>
|
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#menu li {
padding: 10px 5px;
border-bottom: 1px solid hsl(210, 10%, 90%);
text-align: center;
cursor: pointer;
color: hsl(210, 10%, 50%);
list-style-type: none;
font-size: 20px;
}
#menu li:hover {
background-color: hsl(210, 10%, 92%);
color: hsl(210, 80%, 50%);
text-shadow: 0px 0px 1px hsl(210, 100%, 70%);
}
#page {
background-color: hsl(210, 0%, 100%);
height: 500px;
overflow: auto;
|
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
#gc_options_page {
display: none;
padding: 20px;
}
.opt_subsection {
margin: 5px 0;
padding: 10px;
background-color: hsl(210, 20%, 92%);
border-radius: 3px;
}
.opt_subsection h2 {
color: hsl(210, 30%, 50%);
margin-bottom: 3px;
font-size: 16px;
font-family: "Trebuchet MS", sans-serif;
}
.opt_subsection p {
padding: 2px 3px;
display: flex;
align-items: center;
}
.opt_subsection p:hover {
background-color: hsl(210, 20%, 86%);
border-radius: 2px;
}
.opt_subsection label {
flex: 1;
font-size: 12px;
}
.opt_subsection input {
|
|
|
|
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
#gc_options_page {
display: none;
padding: 20px;
}
.opt_subsection {
margin: 5px 0;
padding: 10px;
background-color: hsl(210, 20%, 95%);
border-radius: 3px;
}
.opt_subsection h2 {
color: hsl(210, 30%, 50%);
margin-bottom: 3px;
font-size: 16px;
font-family: "Trebuchet MS", sans-serif;
}
.opt_subsection p {
padding: 2px 3px;
display: flex;
align-items: center;
}
.opt_subsection p:hover {
background-color: hsl(210, 20%, 90%);
border-radius: 2px;
}
.opt_subsection label {
flex: 1;
font-size: 12px;
}
.opt_subsection input {
|