crbtc.org/assets/style/main.scss

61 lines
768 B
SCSS
Raw Normal View History

2023-07-17 19:11:13 +00:00
@import 'fonts';
@import 'config';
body {
background: $b-color;
margin: 0;
}
main {
max-width: 60rem;
2023-09-02 06:22:13 +00:00
min-height: calc(100vh - 438px);
2023-07-17 19:11:13 +00:00
margin: 0 auto;
padding: 0 4rem;
}
@media only screen and (max-width: 600px) {
main { padding: 2rem 1.5rem }
2023-07-17 19:11:13 +00:00
}
html {
scroll-behavior: smooth;
color-scheme: dark;
2023-07-17 19:11:13 +00:00
}
*, *:after, *:before {
box-sizing: border-box;
&:focus {
outline: none;
}
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
b,
label {
color: $f-color;
font-family: $p-font;
margin: 0;
padding: 0;
}
a {
color: $link;
text-decoration: none;
}
2023-07-28 00:17:00 +00:00
@import 'components/header';
@import 'components/footer';
2023-07-17 19:11:13 +00:00
@import 'pages/index';
@import 'pages/pages';
@import 'pages/event';
2023-07-17 19:11:13 +00:00
@import 'pages/guide';
2023-07-28 00:17:00 +00:00
@import 'pages/auth';
@import 'pages/404';