CSS

As of Aug 31 2022:

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
body {
    margin: 0 auto !important;
    max-width: 1028px;
    float: none !important;
    font-family: 'Roboto', San-Serif !important;
    font-weight: 300;
}

/* Variables */
:root {
    --padding-right: calc(env(safe-area-inset-right) + 80px) !important;
    --padding-left: calc(env(safe-area-inset-left) + 80px) !important;
    --transition: all .12s ease-in 0s !important;

    --color-primary: #4d586f !important;
    --color-border-default: rgba(255,255,255,0.2) !important;
    --color-ui-hover-bg: rgba(0,0,0,0.02) !important;

    --color-text-default: #FFF !important;
  
    --color-bg-default: rgba(34,34,34,1) !important;
    --primary-font: 'Roboto', Sans-Serif;

}

/* Fade in animation */
body {
    -webkit-animation: fadeIn 1s !important;
    -moz-animation: fadeIn 1s !important;
    animation: fadeIn 1s !important;
}
h1, h2, h3,
.notion-column-list,
.notion-collection,
.notion-divider {
    -webkit-animation: fadeInUp 1s !important;
    -moz-animation: fadeInUp 1s !important;
    animation: fadeInUp 1s !important;
}
@keyframes fadeIn { 0% {  opacity: 0; } 100% { opacity: 1; } }
@-moz-keyframes fadeIn { 0% {  opacity: 0; } 100% { opacity: 1; } }
@-webkit-keyframes fadeIn { 0% {  opacity: 0; } 100% { opacity: 1; } }
@keyframes fadeInUp { 0% { transform: translate3d(0,40px,0); } 100% { transform: translate3d(0,0,0); } }
@-moz-keyframes fadeInUp { 0% { transform: translate3d(0,40px,0); } 100% { transform: translate3d(0,0,0); } }
@-webkit-keyframes fadeInUp { 0% { transform: translate3d(0,40px,0); } 100% { transform: translate3d(0,0,0); } }

/* Hides certain elements */
.notion-page__icon,
.notion-toggle.bg-gray,
.notion-header__content,
.notion-property__title__icon-wrapper,
.notion-breadcrumb__divider,
.notion-breadcrumb__item {
    display: none !important;
}

/* Always show the page title */
.notion-navbar a[href="/"] {
    display: flex !important;
}
.notion-header {
  display: none;
}

/* Sizing & spacing */
.max-width,
.super-content,
.notion-navbar {
    padding-right: var(--padding-right) !important;
    padding-left: var(--padding-left) !important;
}
.super-content {
    padding-bottom: 50px !important;
    padding-top: 80px !important;
}
.notion-header__title { padding: 0 !important; }
.max-width { max-width: 100% !important; }


/* Forward "Logo" */
.notion-navbar {
    position: static;
    /*background: rgba(155,160,176,0.94) !important;*/
    background: rgba(34,34,34, 0) !important;
    box-shadow: none !important;
}
.notion-navbar>a { padding: 0 !important; }
.notion-navbar>a:hover { background: none !important; }
.notion-breadcrumb__divider { margin: -4px 4px 0 !important; }
.notion-navbar__title { overflow: visible !important; }
.notion-quote {
    padding: 0 var(--padding-right) 0 0 !important;
    height: var(--navbar-height) !important;
    justify-content: flex-end !important;
    align-items: center !important;
    position: fixed !important;
    font-size: 22px !important;
    z-index: 9999 !important;
    display: flex !important;
    border: none !important;
    margin: 0 !important;
    right: 0 !important;
    top: 0 !important;
}

/* Text + link elements */
h1, h2, h3, p, a {
    font-family: 'Roboto', San-Serif !important;
    font-weight: 100;
}
.notion-breadcrumb__divider,
.notion-navbar__title,
.notion-to-do,
p, ul, ol {
    font-size: 24px;
}
h1 {
    line-height: 1.4 !important;
    font-size: 62px !important;
}
.notion-toggle {
  font-size: 18px !important;
}
.notion-toggle__trigger_icon {
  font-size: 1.25rem;
}
h2 { font-size: 30px !important; }
h1 a { color: var(--color-primary) !important; }
.notion-semantic-string .link { border: none !important; }
.notion-heading { padding: 0 !important; }



/*.notion-navbar__title {*/
/*    font-family: 'Roboto', Sans-Serif;*/
/*    font-weight: 500;*/
/*    margin-left: -7px;*/
/*    letter-spacing: 0.05em;*/
/*}*/

.notion-toggle__summary {
  align-items: center;
}

.notion-page {
  display: none;
}

.notion-toggle p,
.notion-collection-table,
.notion-collection-card,
.notion-caption {
    font-size: 16px !important;
    font-weight: 300;
}

/* Lists */
.notion-bulleted-list,
.notion-numbered-list {
    padding-left: calc(1.5em + -12px) !important;
}
.notion-toggle__summary:before {
    margin: 0 4px 0 -4px !important;
    font-size: 1em !important;
}
.notion-toggle__summary:hover:before {
    background: none !important;
    align-items: center;
}
.notion-toggle__content {
    padding-left: 24px !important;
}
.notion-toggle__trigger {
  margin: 0px;
}



/* Mobile styles */
@media (max-width: 800px) {
    :root {
        --navbar-height: 60px !important;
        --padding-right: 24px !important;
        --padding-left: 24px !important;
    }
    h1 { font-size: 36px !important; }
    h2, .notion-collection-list__item { font-size: 24px !important; }
    .notion-breadcrumb__divider,
    .notion-navbar__title,
    .notion-quote {
        font-size: 20px !important;
    }
    .super-content { padding-top: 40px !important; }
    .notion-quote {
        padding: 0 var(--padding-right) 20px var(--padding-left) !important;
        background: rgba(34,34,34) !important;
        justify-content: flex-start !important;
        top: var(--navbar-height) !important;
        font-size: 18px !important;
        width: 100% !important;
    }
}
image
google fonts0.3KB
image