27 lines
499 B
SCSS
27 lines
499 B
SCSS
@import 'widgets/menu.scss';
|
|
|
|
.nav-menu {
|
|
font-weight: bold;
|
|
> a { margin: 0 1rem; } // Spacing entries
|
|
background-color: rgb(239, 239, 239);
|
|
color: black;
|
|
padding: 0.5rem; // Leaving background space around entries
|
|
}
|
|
|
|
header { text-align: center; font-weight: bold; }
|
|
|
|
article > h1:first-child {
|
|
text-align: center;
|
|
font-size: 2.6em;
|
|
}
|
|
|
|
main {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.source {
|
|
background-color: rgb(239, 239, 239);
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|