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.
victor-hugo/src/css/main.css

44 lines
744 B
CSS
Raw Normal View History

2020-03-22 22:09:09 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
/*
You can use import statements to include partials:
*/
2020-03-22 22:09:09 +00:00
// @import "imports/reset.css";
html,
body {
height: 100%;
}
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;
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;
}
2020-03-22 22:09:09 +00:00
// vim:set filetype=scss: