shrimp.css 🦐

photo-of-mountain-under-cloudy-sky

A simple responsive css!

A single file css framework for simple blogs.

scostadavid

31 de Mar.

Updated on Set 24, 2023

shrimp.css is a open source css framework for markdown generated blog pages styling

Usage

  1. Create an HTML document with a basic structure
  2.                 
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>My blog</title>
    </head>
    <body>
    
    </body>
    </html>
                
  3. Download the shrimp.css file
  4. Download Link
  5. Add the shrimp.css file to your project with the link tag
  6. <link rel="stylesheet" href="shrimp.css"/>
                
  7. Write some html inside your html body tag
  8.                 
    <main>
    
    <figure>
        <img src="public/img/wide.jpg" alt="photo-of-mountain-under-cloudy-sky" srcset=""/>
    </figure>
    
    <article>
        <header>
            <h1>A simple responsive css!</h1>
            <div>
                <p>by Foo Bar</p>
                <p>31 de Mar.</p>
                <p>Updated on Jun 28, 2023</p>
            </div>
        </header>
        <p>
            Lorem ipsum dolor sit amet consectetur, adipisicing elit.
            Maxime, asperiores recusandae velit nam tenetur ratione sapiente inventore earum tempore molestias amet alias sit beatae nulla nobis, cum itaque perferendis. Voluptas. Iure labore modi porro tenetur,
        </p>
    </article>
    </main>