Sedna CSS

A Free (as in Freedom), class-less, lightweight CSS framework!

Features

How to use

  1. Put sedna.css in css folder, near your html file.
  2. An example sedna page:
<!DOCTYPE html>
<html lang="en">
    <head>
        <!-- Base informations -->
        <meta charset="utf-8">
        <title>Title</title>
        <meta name="description" content="description">

        <!-- Mobile specific metas -->
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <!-- Font -->
        <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css">

        <!-- CSS -->
        <link rel="stylesheet" href="css/sedna.css">

        <!-- Favicon -->
        <link rel="icon" type="image/png" href="images/favicon.png">

    </head>
    <body>
        <header>
            <nav>
                <a href="#">nav 1</a>
                <a href="#">nav 2</a>
            </nav>
            <h1>Title</h1>
            <p>description</p>
        </header>
        <main>
            /* your content is here */
        </main>
    </body>
</html>
  1. Set your favourite palette:
<html class="palette">
...
</html>
  1. Set your favourite font:
<html class="font">
...
</html>

you should load the font you want!

  1. force-dark or force-light mode:
<html class="force-dark">
...
</html>
  1. Use colors everywhere you like:
<p class="color">text</p>

License

GNU GPL v3