urlsnail/resources/sass/app.scss

40 lines
576 B
SCSS
Raw Permalink Normal View History

2024-05-25 13:59:45 +00:00
* {
box-sizing: border-box;
}
html {
margin: 0;
padding: 0;
}
2024-05-25 12:47:48 +00:00
body {
2024-05-25 13:59:45 +00:00
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
background-color: #335C67;
2024-05-30 19:41:29 +00:00
color: #fff;
2024-05-25 13:59:45 +00:00
}
2024-05-25 17:21:34 +00:00
@import 'components/bookmark';
2024-05-26 12:48:04 +00:00
@import 'components/forms';
2024-05-30 20:54:18 +00:00
@import 'components/header';
@import 'components/pagination';
2024-05-25 17:21:34 +00:00
a {
&,
&:active,
&:visited {
color: #fff;
}
&:hover {
color: #88f;
}
}
2024-05-25 12:47:48 +00:00
.container {
max-width: 40rem;
2024-05-25 13:59:45 +00:00
margin: 1em auto;
2024-05-25 12:47:48 +00:00
}