39 lines
563 B
CSS
39 lines
563 B
CSS
.-buttonReset {
|
|
color: var(--font-color);
|
|
border: none;
|
|
background: inherit;
|
|
background-color: transparent; /* IE 11 */
|
|
padding: 0;
|
|
font: inherit;
|
|
line-height: inherit;
|
|
text-align: inherit;
|
|
}
|
|
|
|
.-menuItemFullButton {
|
|
composes: -buttonReset;
|
|
transition: color var(--header-transition);
|
|
width: 100%;
|
|
user-select: text;
|
|
}
|
|
|
|
.container {
|
|
composes: -menuItemFullButton;
|
|
|
|
&:hover {
|
|
color: var(--header-tint);
|
|
}
|
|
}
|
|
|
|
.-menuItemTitle {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.name {
|
|
composes: -menuItemTitle;
|
|
margin: 0;
|
|
}
|
|
|
|
.description {
|
|
margin: 0;
|
|
}
|