urlsnail/resources/sass/app.scss

30 lines
441 B
SCSS
Raw 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-25 17:21:34 +00:00
@import 'components/bookmark';
@import 'components/pagination';
2024-05-25 13:59:45 +00:00
h1 {
color: #FFF3B0;
text-align: center;
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
}