Introduction

PaperUI is a free, open-source CSS framework that builds responsive designs using pre-defined classes, components, and utilities. It is focused more on development, either it's others or itself, and hence keeps growing.

Installation Guide

To use this framework, you simply need to put the below link in your header file above all other style sheets.

            
        <!--HTML-->
        <link rel="stylesheet" href="https://paperui.netlify.app/components.css">
            
          
            
        /*CSS*/
        @import url("https://paperui.netlify.app/components.css")
            
          

Seperate links for indivisual components are also provided in their respective sections.


Customisation

Athough PaperUI tries to implement its best but sometimes user wants their own styles dealing. For that you can simply add your own class to the existing classes.

Example

Primary
          
            <div class="btn my-color">Primary</div>
            <style>
              .my-color {
                background: salmon;
              }
            </style>