148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
font-size: 10px;
font-weight: bold;
}
#grammalecte_tooltip_sugg_block {
padding: 10px;
background-color: hsl(210, 10%, 96%);
border-radius: 0 0 2px 2px;
line-height: 20px;
}
.grammalecte_tooltip_sugg {
display: inline-block;
padding: 1px 6px;
background-color: hsl(180, 60%, 40%);
color: hsl(180, 0%, 96%);
border-radius: 2px;
cursor: pointer;
font-size: 14px;
text-decoration: none;
}
.grammalecte_tooltip_sugg:hover {
background-color: hsla(180, 70%, 45%, 1);
color: hsla(0, 0%, 100%, 1);
}
|
|
>
|
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
font-size: 10px;
font-weight: bold;
}
#grammalecte_tooltip_sugg_block {
padding: 10px;
background-color: hsl(210, 10%, 96%);
border-radius: 0 0 2px 2px;
line-height: 24px;
}
.grammalecte_tooltip_sugg {
display: inline-block;
padding: 1px 6px;
background-color: hsl(180, 60%, 40%);
color: hsl(180, 0%, 96%);
border-radius: 2px;
cursor: pointer;
font-size: 14px;
line-height: 18px;
text-decoration: none;
}
.grammalecte_tooltip_sugg:hover {
background-color: hsla(180, 70%, 45%, 1);
color: hsla(0, 0%, 100%, 1);
}
|