another css library made only because I need a standard for my projects
<!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>
- 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>
MD | LG |
---|---|
<div class="col-md"></div> |
<div class="col-lg"></div> |
<div class="row"></div>
Navbar allows responsivity for your web-apps. There is a code for a responsive navbar.
<div class="navbar-primary">
<h2 class="brand">Hello</h2>
<a class="mobile"><i class="fa fa-bars"></i></a>
</div>
<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 type="text" class="input-primary">
<input type="text" class="input-secondary">
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
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>