roadmap/quartz/styles/base.scss

258 lines
4.1 KiB
SCSS
Raw Normal View History

2023-06-01 21:35:31 +00:00
@import "./syntax.scss";
2023-06-06 05:14:17 +00:00
@import "./callouts.scss";
2023-06-01 21:35:31 +00:00
html {
scroll-behavior: smooth;
}
body {
margin: 0;
max-width: 100%;
box-sizing: border-box;
background-color: var(--light);
font-family: var(--bodyFont);
}
.text-highlight {
background-color: #fff236aa;
padding: 0 0.1rem;
border-radius: 5px;
}
2023-06-07 02:48:37 +00:00
p, ul, text, a, tr, td, li, ol, ul, .katex {
2023-06-01 21:35:31 +00:00
color: var(--darkgray);
fill: var(--darkgray);
}
a {
font-weight: 600;
text-decoration: none;
transition: all 0.2s ease;
color: var(--secondary);
&:hover {
color: var(--tertiary) !important;
}
&.internal {
text-decoration: none;
background-color: var(--highlight);
padding: 0 0.1rem;
border-radius: 5px;
}
}
.page {
2023-06-18 17:47:07 +00:00
margin: 6rem 35vw 6rem 20vw;
2023-06-01 21:35:31 +00:00
max-width: 1000px;
2023-06-17 21:36:06 +00:00
position: relative;
& .left, & .right {
position: fixed;
2023-06-18 17:47:07 +00:00
height: 100vh;
overflow-y: scroll;
2023-06-17 21:36:06 +00:00
box-sizing: border-box;
2023-06-18 17:47:07 +00:00
display: flex;
flex-direction: column;
top: 0;
gap: 2rem;
padding: 6rem;
2023-06-17 21:36:06 +00:00
}
& .left {
left: 0;
2023-06-18 17:47:07 +00:00
padding-left: 10vw;
width: 20vw;
2023-06-17 21:36:06 +00:00
}
& .right {
right: 0;
2023-06-18 17:47:07 +00:00
padding-right: 10vw;
width: 35vw;
2023-06-17 21:36:06 +00:00
}
2023-06-01 21:35:31 +00:00
@media all and (max-width: 1200px) {
2023-06-18 17:47:07 +00:00
margin: 25px 5vw;
2023-06-17 21:36:06 +00:00
& .left, & .right {
padding: 0;
2023-06-18 17:47:07 +00:00
height: initial;
2023-06-17 21:36:06 +00:00
max-width: none;
position: initial;
}
2023-06-01 21:35:31 +00:00
}
& p {
overflow-wrap: anywhere;
}
& article {
& > h1 {
font-size: 2rem;
}
}
}
blockquote {
2023-06-07 02:48:37 +00:00
margin: 1rem 0;
2023-06-01 21:35:31 +00:00
border-left: 3px solid var(--secondary);
padding-left: 1rem;
transition: border-color 0.2s ease;
}
h1,
h2,
h3,
h4,
h5,
h6,
thead {
font-family: var(--headerFont);
color: var(--dark);
font-weight: revert;
margin: 2rem 0 0;
2023-06-01 23:48:38 +00:00
article > & > a {
color: var(--dark);
&.internal {
background-color: transparent;
}
2023-06-01 21:35:31 +00:00
}
2023-06-01 23:48:38 +00:00
}
2023-06-01 21:35:31 +00:00
2023-06-01 23:48:38 +00:00
h1, h2, h3, h4, h5, h6 {
&[id] > a {
margin: 0 0.5rem;
opacity: 0;
transition: opacity 0.2s ease;
2023-06-03 19:07:19 +00:00
transform: translateY(-0.1rem);
display: inline-block;
2023-06-01 23:48:38 +00:00
font-family: var(--codeFont);
user-select: none;
}
&[id]:hover > a {
opacity: 1;
2023-06-01 21:35:31 +00:00
}
}
div[data-rehype-pretty-code-fragment] {
line-height: 1.5rem;
position: relative;
& > div[data-rehype-pretty-code-title] {
font-family: var(--codeFont);
font-size: 0.9rem;
padding: 0.1rem 0.8rem;
border: 1px solid var(--lightgray);
width: max-content;
border-radius: 5px;
margin-bottom: -0.8rem;
color: var(--darkgray);
}
2023-06-01 23:05:14 +00:00
}
2023-06-01 21:35:31 +00:00
2023-06-01 23:05:14 +00:00
pre {
font-family: var(--codeFont);
padding: 0.5rem;
border-radius: 5px;
overflow-x: scroll;
border: 1px solid var(--lightgray);
& > code {
background: none;
padding: 0;
2023-06-07 02:48:37 +00:00
font-size: 0.85rem;
2023-06-01 23:05:14 +00:00
counter-reset: line;
counter-increment: line 0;
display: grid;
& .line {
padding: 0 0.25rem;
box-sizing: border-box;
border-left: 3px solid transparent;
&.highlighted {
background-color: var(--highlight);
border-left: 3px solid var(--secondary);
}
2023-06-01 21:35:31 +00:00
2023-06-01 23:05:14 +00:00
&::before {
content: counter(line);
counter-increment: line;
width: 1rem;
margin-right: 1rem;
display: inline-block;
text-align: right;
color: rgba(115, 138, 148, 0.4);
2023-06-01 21:35:31 +00:00
}
}
}
}
code {
font-size: 0.9em;
2023-06-20 03:37:45 +00:00
color: var(--dark);
2023-06-01 21:35:31 +00:00
font-family: var(--codeFont);
border-radius: 5px;
padding: 0.1rem 0.2rem;
background: var(--lightgray);
}
tbody, li, p {
line-height: 1.5rem;
}
table {
border: 2px solid var(--gray);
width: 100%;
padding: 1.5rem;
border-collapse: collapse;
}
td, th {
padding: 0.2rem 1rem;
border: 2px solid var(--gray);
}
img {
max-width: 100%;
border-radius: 5px;
margin: 1rem 0;
}
p > img + em {
display: block;
transform: translateY(-1rem);
}
hr {
width: 100%;
margin: 2rem auto;
height: 1px;
border: none;
background-color: var(--lightgray);
}
section {
margin: 2rem auto;
border-top: 1px solid var(--lightgray);
& > #footnote-label {
& > a {
color: var(--dark);
}
}
& ol, & ul {
padding: 0 1em
}
}
2023-06-06 07:00:38 +00:00
audio, video {
width: 100%;
border-radius: 5px;
}
2023-06-18 17:47:07 +00:00
.spacer {
flex: 1 1 auto;
}