styles.scss
850 Bytes
// Config
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@500&family=Roboto+Condensed:ital,wght@0,400;0,700;1,300&family=Roboto:wght@100;900&family=Vollkorn:ital@1&display=swap");
@import "./config/_variables.scss";
@import "./config/_reset.scss";
// Components
@import "./components/header.scss";
@import "./components/footer.scss";
// Screens
@import "./screens/home.scss";
@import "./screens/editProfile.scss";
@import "./screens/userDetail.scss";
@import "./screens/join.scss";
// Defaults
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
main {
padding: 0px $space;
max-width: 1200px;
width: 100%;
margin: 0 auto;
}
}