This repository has been archived on 2020-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-03-22 22:09:09 +00:00
|
|
|
@tailwind base;
|
|
|
|
|
|
|
|
@tailwind components;
|
|
|
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
2017-08-11 14:48:32 +00:00
|
|
|
/*
|
|
|
|
You can use import statements to include partials:
|
|
|
|
*/
|
2020-03-22 22:09:09 +00:00
|
|
|
// @import "imports/reset.css";
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2017-08-11 14:48:32 +00:00
|
|
|
|
2018-12-03 21:44:11 +00:00
|
|
|
body {
|
|
|
|
font-size: calc(10px + 1vmin);
|
2020-03-22 22:09:09 +00:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
|
|
|
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
|
|
sans-serif;
|
2018-12-03 21:44:11 +00:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2017-08-11 14:48:32 +00:00
|
|
|
text-align: center;
|
2018-12-03 21:44:11 +00:00
|
|
|
background-color: #282c34;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: pink;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
padding: 0 32px;
|
2017-08-11 14:48:32 +00:00
|
|
|
}
|
2020-03-22 22:09:09 +00:00
|
|
|
|
|
|
|
// vim:set filetype=scss:
|