130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
color: hsla(210, 0%, 100%, 1);
}
div.grammalecte_panel_menu {
display: flex;
flex-direction: row;
justify-content: space-around;
}
div.grammalecte_menu_button {
color: hsl(210, 50%, 96%);
padding: 5px 10px;
font-size: 12px;
font-variant: small-caps;
cursor: pointer;
border-radius: 3px;
}
div.grammalecte_menu_button:hover {
background-color: hsl(210, 80%, 40%);
|
>
|
|
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
color: hsla(210, 0%, 100%, 1);
}
div.grammalecte_panel_menu {
display: flex;
flex-direction: row;
justify-content: space-around;
flex-wrap: nowrap;
}
div.grammalecte_menu_button {
color: hsl(210, 50%, 96%);
padding: 5px 5px;
font-size: 12px;
font-variant: small-caps;
cursor: pointer;
border-radius: 3px;
}
div.grammalecte_menu_button:hover {
background-color: hsl(210, 80%, 40%);
|