superzackx / WaddleCSS

An easy to use CSS framework which includes, grid system, navbars and beautiful buttons.

Home Page:https://github.com/superzackx/WaddleCSS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WaddleCSS

A easy to use framework for making good looking websites. Support us by starring this repo!

Usage

To use WaddleCSS, firstly download all the code or simply use the link and script tags!

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/superzackx/WaddleCSS.V2@latest/app.css">
<script src="https://cdn.jsdelivr.net/gh/superzackx/WaddleCSS.V2@latest/script.js"></script>

Docs

1. Buttons

Buttons are a big part of WaddleCSS, there are different color buttons such as

<button class="btn-primary">
<button class="btn-olive">

Example

2. Accordions

Good old accordions which are easy to use and interact with.

<button class="accordion">Section 1</button>
<div class="panel">
 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>

<button class="accordion">Section 2</button>
<div class="panel">
 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>

<button class="accordion">Section 3</button>
<div class="panel">
 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div>

Example

3. Navbar

Ah, a navbar. Responsive navbars are always useful. Example below:

    <nav>
        <input id="nav-toggle" type="checkbox">
        <div class="logo">EXAMPLE<strong>NAV</strong></div>
        <ul class="links">
            <li><a href="#home">Home</a></li>
            <li><a href="#about">About</a></li>
            <li><a href="#work">Work</a></li>
            <li><a href="#projects">Projects</a></li>
            <li><a href="#contact">Contact</a></li>
        </ul>
        <label for="nav-toggle" class="icon-burger">
            <div class="line"></div>
            <div class="line"></div>
            <div class="line"></div>
        </label>
    </nav>
    <br>
    <br>
    <br> --- Add these! Very important

Example

4. Grid System

Our framework uses a 12 grid system. For making a coloum row, do this:

<div class="row">
  <div class="col col-4">
    <h1>Hello!</h1>
  </div>
    <div class="col col-4">
    <h1>Hello There!</h1>
  </div>
    <div class="col col-4">
    <h1>Hello!</h1>
  </div>
</div>

Example

5. Forms

These forms are WaddleCSS Forms. They have a nice swoosh to it! So this is a form without our Strength class

        <main>
            <form>
                <div class="field">
                    <input type="email" name="email" class = "input" />
                    <label for="email" class="label">Email</label>
                </div>
                <div class="field">
                    <input type="password" name="password" class= "input" />
                    <label for="password" class="label">Password</label>
                </div>
                <!--        
                    Below is the strength
                        
                    <div class="strength">
                        <span class = "bar bar-1"></span>
                        <span class = "bar bar-2"></span>
                        <span class = "bar bar-3"></span>
                        <span class = "bar bar-4"></span>
                    </div>
                    
                    <ul>
                        <li>must be at least 5 characters</li>
                        <li>must contain a capital</li>
                        <li>must contain a number</li>
                    </ul>
                -->
            </form>
        </main>

If you would like to add the strength then simply uncomment what I did. For showing the strength you would need some javascript:

let strength = 0;
let validations = []; 
            
function validatePassword(e) {
    const password = e.target.value;
    validations = [
        (password.length > 5), // use regex
        (password.search(/[A-Z]/) > -1), // now simply searching for cap letters
        (password.search(/[0-9]/) > -1), // searching for numbers
    ]
    return validations; 
}

6. Alert Boxes

Alert boxes are dismissable and require minimal JavaScript.

  <div class="alert-teal">
    <span class="closebtn" onclick="this.parentElement.style.display='none';">&times;</span>
    <h1 class="alert-title">Hello there</h1>
    <p class="alert-des">Lorem ipsum dolor sit amet consectetur adipisicing elit. Explicabo id architecto deleniti, labore facilis amet possimus porro asperiores laborum praesentium doloribus, molestiae voluptatibus sed consectetur odio neque saepe ratione blanditiis.</p>
  </div>

File Tree

nightzan999/theimperialgod/
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── app.css
├── index.html
├── script.js
├── asset/
|   ├──── acc.png
|   ├──── btn.png
|   ├──── grid.png
|   ├──── main.png
|   ├──── nav.png
├── docs/
|   ├──── index.html

Credits

  1. Superzackx
  2. NightZan999

About

An easy to use CSS framework which includes, grid system, navbars and beautiful buttons.

https://github.com/superzackx/WaddleCSS

License:GNU General Public License v3.0


Languages

Language:CSS 85.6%Language:HTML 11.7%Language:JavaScript 2.6%