website

#astro#js#html#css

git clone https://git.pyrossh.dev/website

木 Personal website of pyrossh. Built with astrojs, shiki, vite.


assets/css/workers/cv.css
/* Nested under .cv-page — this ships in the site-wide bundle.css, and a
   bare h1/.pdf selector would otherwise leak onto every other page's
   h1/.pdf, the same mistake posts-index.css made before it got dropped
   from the merge entirely (see eleventy.config.js's CSS_FILES_TO_MERGE
   comment). */
.cv-page {
  h1 {
    display: flex;
    align-items: flex-start;
    font-weight: 800;
    font-size: var(--fs-hero-xl);
    margin-bottom: 1rem;

    a {
      margin-left: 0.4rem;
      margin-top: 0.8rem;
      color: var(--color-link);
    }
  }

  .pdf {
    border: 1px solid black;
  }
}