frontpage/styles/globals.scss

36 lines
485 B
SCSS
Raw Normal View History

2021-12-14 22:47:12 +01:00
@font-face {
2021-12-16 00:21:14 +01:00
font-family: CascadiaCode;
src: url(fonts/CascadiaCode.woff2);
}
* {
2022-02-09 20:25:15 +01:00
box-sizing: border-box !important;
2022-06-12 14:55:48 +02:00
}
:root {
--repl-color: rgb(24, 138, 24);
--repl-color-link: rgb(31, 179, 31);
--repl-color-hint: rgba(24, 138, 24, 0.3);
2021-12-16 01:03:54 +01:00
}
body {
margin: 0;
padding: 0;
2022-06-14 23:18:00 +02:00
}
2022-10-07 23:03:39 +02:00
#blogBody {
header {
position: sticky;
top: 10px;
}
main {
max-width: 900px;
margin: 0 auto;
}
2022-10-08 14:07:56 +02:00
}
a.nostyle {
text-decoration: inherit;
color: inherit;
2022-10-07 23:03:39 +02:00
}