Annika Backstrom
0b1fe6d491
Seems like overkill for this stage of things. It's also not clear to me how to use Livewire for only a subset of interactive functionality on the page.
43 lines
555 B
SCSS
43 lines
555 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
|
|
background-color: #335C67;
|
|
}
|
|
|
|
@import 'components/bookmark';
|
|
@import 'components/pagination';
|
|
|
|
a {
|
|
&,
|
|
&:active,
|
|
&:visited {
|
|
color: #fff;
|
|
}
|
|
|
|
&:hover {
|
|
color: #88f;
|
|
}
|
|
}
|
|
|
|
|
|
h1 {
|
|
color: #FFF3B0;
|
|
text-align: center;
|
|
}
|
|
|
|
.container {
|
|
max-width: 40rem;
|
|
margin: 1em auto;
|
|
}
|
|
|