1
0
Fork 0
ryanmoon.com/assets/style/main.scss

51 lines
636 B
SCSS
Raw Permalink Normal View History

2023-07-11 06:03:57 +00:00
@import 'fonts';
@import 'config';
body {
background: $b-color;
margin: 0;
2023-07-11 06:03:57 +00:00
}
main {
max-width: 42rem;
min-height: calc(100vh - 130px);
margin: 70px auto 0 auto;
2023-07-11 06:03:57 +00:00
}
@media only screen and (max-width: 600px) {
main { min-height: calc(100vh - 155px) }
2023-07-11 06:03:57 +00:00
}
html {
scroll-behavior: smooth;
2023-07-11 06:03:57 +00:00
}
*, *:after, *:before {
box-sizing: border-box;
&:focus {
outline: none;
}
2023-07-11 06:03:57 +00:00
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
b,
label {
font-family: $p-font;
margin: 0;
padding: 0;
2023-07-11 06:03:57 +00:00
}
@import 'components/index';
@import 'pages/default';
@import 'pages/index';
@import 'pages/projects';
@import 'pages/contact';
@import 'pages/404';