Rick00027's picture
fetch content from my public notion page, https://www.notion.so/Medium-Inventory-2c9b18e93cbf80198623dd14eb1e43cf?source=copy_link
3a83f65 verified
Raw
History Blame Contribute Delete
955 Bytes
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
--primary: #1a1a1a;
--secondary: #4d4d4d;
--tertiary: #999;
--divider: #f0f0f0;
--background: #fafafa;
}
html {
scroll-behavior: smooth;
}
body {
background: var(--background);
color: var(--primary);
}
.prose {
line-height: 1.65;
color: var(--primary);
}
.prose p {
margin-bottom: 1.5em;
color: var(--secondary);
}
.prose h2 {
margin-top: 2em;
margin-bottom: 1em;
color: var(--primary);
}
.prose ul {
margin-top: 1.5em;
margin-bottom: 2em;
color: var(--secondary);
}
.section-divider {
border-top: 1px solid var(--divider);
margin: 4rem 0;
}
.section-padding {
padding: 4rem 0;
}
.muted {
color: var(--tertiary);
}
article a {
text-decoration: none;
color: inherit;
transition: opacity 0.2s ease;
}
article a:hover {
opacity: 0.7;
}