Skip to content

MatthewSaintBull/kallizto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KALLIZTO v0.1.0

another css library made only because I need a standard for my projects

Menu

HTML5 setup 🚀

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./style/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
...
</body>
<script src="./src/index.js"></script>
</html>

Layout ❗

Container

  • If you want to use Navbars, please use <div class="container-nav"></div>
  • If you want to use Sidebars, please use <div class="container-side"></div>

Inside the Container, there are Columns and Rows to handle your layout

Col

MD LG
<div class="col-md"></div> <div class="col-lg"></div>

Row

<div class="row"></div>

Navbar ↔️

Navbar allows responsivity for your web-apps. There is a code for a responsive navbar.

Primary

<div class="navbar-primary">
    <h2 class="brand">Hello</h2>
    <a class="mobile"><i class="fa fa-bars"></i></a>
</div>

Secondary

<div class="navbar-secondary">
	<h2 class="brand">Hello</h2>
	<a class="mobile"><i class="fa fa-bars"></i></a>
</div>

The <a></a> tag it's necessary for responsivity The <h2></h2> tag it's only a logo tag. You can use whatever you want using the class 'brand'

Warning ⚠️ the logo has been tested only with <h2></h2> and <p></p>but it should work either with images

Input ✒️

Primary

<input type="text" class="input-primary">

Secondary

<input type="text" class="input-secondary">

Modal ✏️

Modal requires a button like the example below

<button class="btn-mdl btn-primary"></button>

and a div with the class "modal" which will be the container of the modal.

<div class="modal"></div>

Warning ⚠️ This modal hasn't yet an "exit" button. It will be available as soon as possible

Tabs

The tabs component works with a container which needs to contain all the panes necessaries for that tab component. Every single need must have an id. You can see an example below.

<div class="tab-container"> <!-- the tab container which will have the layout of the tab component -->
    <div class="tab-nav-primary"></div> <!-- the navigation tab -->
    <div class="pane" id="pane1"> <!-- the panes inside the tab container -->
        <p>pane-1</p>
    </div>
    <div class="pane" id="pane2">
        <p>pane-2</p>
    </div>
    <div class="pane" id="pane3">
        <p>pane-3</p>
    </div>
</div>

About

another css library made only because I need a standard for my projects

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published