simpleblog

Generador estatico minimalista de blog
git clone https://git.fedi.ovh/simpleblog
Log | Files | Refs

style.css (1817B)


      1 /* simpleblog — css minimal */
      2 * { box-sizing: border-box; }
      3 body {
      4   font-family: system-ui, sans-serif;
      5   max-width: 40rem;
      6   margin: 2rem auto;
      7   padding: 0 1rem;
      8   line-height: 1.5;
      9   color: #222;
     10   background: #fafafa;
     11 }
     12 a { color: #0366d6; }
     13 a:hover { text-decoration: underline; }
     14 
     15 .site-header { border-bottom: 1px solid #ddd; padding-bottom: 1rem; margin-bottom: 2rem; }
     16 .site-brand { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; color: #222; }
     17 .site-logo { width: 1.75rem; height: 1.75rem; }
     18 .site-title { font-size: 1.5rem; font-weight: bold; }
     19 .site-description { color: #666; margin: 0.25rem 0 0; }
     20 .site-nav { margin-top: 0.75rem; }
     21 .site-nav a { margin-right: 0.75rem; }
     22 
     23 .pagination { margin-top: 2rem; }
     24 .pagination a { margin-right: 1rem; }
     25 
     26 .post-tags { margin-left: 0.5rem; }
     27 .post-tags a { background: #eef; padding: 0.05rem 0.4rem; border-radius: 3px; font-size: 0.85rem; }
     28 
     29 .tag-cloud ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
     30 .tag-cloud li a { background: #eef; padding: 0.2rem 0.6rem; border-radius: 3px; }
     31 
     32 .site-footer { border-top: 1px solid #ddd; margin-top: 3rem; padding-top: 1rem; color: #666; font-size: 0.9rem; }
     33 
     34 .post-list ul { list-style: none; padding: 0; }
     35 .post-item { margin-bottom: 1.25rem; }
     36 .post-item time { display: inline-block; color: #888; font-family: monospace; margin-right: 0.5rem; }
     37 .post-summary { color: #555; margin: 0.25rem 0 0; }
     38 
     39 .post-header h1 { margin-bottom: 0.25rem; }
     40 .post-meta { color: #888; font-family: monospace; margin-top: 0; }
     41 .post-content { margin-top: 2rem; }
     42 .post-content pre { background: #f0f0f0; padding: 0.75rem; overflow-x: auto; }
     43 .post-content code { background: #f0f0f0; padding: 0.1rem 0.3rem; }
     44 .post-content pre code { padding: 0; background: none; }