36 lines
485 B
SCSS
36 lines
485 B
SCSS
@font-face {
|
|
font-family: CascadiaCode;
|
|
src: url(fonts/CascadiaCode.woff2);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box !important;
|
|
}
|
|
|
|
:root {
|
|
--repl-color: rgb(24, 138, 24);
|
|
--repl-color-link: rgb(31, 179, 31);
|
|
--repl-color-hint: rgba(24, 138, 24, 0.3);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#blogBody {
|
|
header {
|
|
position: sticky;
|
|
top: 10px;
|
|
}
|
|
|
|
main {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
|
|
a.nostyle {
|
|
text-decoration: inherit;
|
|
color: inherit;
|
|
} |