Skip to content

Commit

Permalink
Update to version 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pro-dev-ph committed Dec 8, 2020
1 parent dc25a07 commit 3de6047
Show file tree
Hide file tree
Showing 354 changed files with 33,044 additions and 0 deletions.
71 changes: 71 additions & 0 deletions assets/components/navbar/navbar-dropdowns.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*------------------------------------------------------------------
* Bootstrap Simple Admin Template
* Version: 2.0
* Author: Alexis Luna
* Copyright 2020 Alexis Luna
* Website: https://github.com/alexis-luna/bootstrap-simple-admin-template
-------------------------------------------------------------------*/
.nav-dropdown .nav-link {
color: #B2EBF2;
line-height: 1.42857;
padding: 1rem 0 1rem 1rem !important;
}

.nav-dropdown .nav-link:hover {
color: #fff;
}

.nav-dropdown.show a {
color: #fff;
}

.nav-dropdown .nav-link::after {
display: none;
}

.nav-dropdown .nav-link-menu {
position: absolute;
border: none;
min-width: 220px;
padding: 0;
line-height: 1.4;
box-shadow: 0 1px 10px 0 rgba(69, 90, 100, 0.2);
margin-top: -5px;
}

.nav-dropdown .nav-link-menu::before {
top: -4px;
right: 25%;
margin: 0 0 0 -.25em;
display: block;
position: absolute;
pointer-events: none;
content: '';
visibility: visible;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
width: .5em;
height: .5em;
background: #ffffff;
z-index: 2;
}

.nav-dropdown .nav-link-menu .nav-list {
padding: 5px 0;
margin-bottom: 0;
list-style: none;
}

.nav-dropdown .nav-link-menu .nav-list li {
line-height: 1.2;
}

.nav-dropdown .nav-link-menu .nav-list li a {
color: #888;
font-size: 14px;
padding: .8rem;
}

.nav-dropdown .dropdown-divider {
margin: 3px 0;
}
81 changes: 81 additions & 0 deletions assets/components/sidebar/sidebar-default.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/*------------------------------------------------------------------
* Bootstrap Simple Admin Template
* Version: 2.0
* Author: Alexis Luna
* Copyright 2020 Alexis Luna
* Website: https://github.com/alexis-luna/bootstrap-simple-admin-template
-------------------------------------------------------------------*/
#sidebar {
min-width: 250px;
max-width: 250px;
background: #fff;
color: #fff;
transition: all 0.3s;
border-right: 1px solid #e6ecf5;
}

#sidebar.active {
margin-left: -250px;
}

#sidebar .sidebar-header {
padding: .4rem 1rem;
border-bottom: 1px solid rgba(101, 109, 119, .16);
max-height: 55px;
}

#sidebar ul.components {
padding: 0 0;
}

#sidebar ul p {
color: #fff;
padding: 10px;
}

#sidebar ul li a {
padding: .8rem 1.5rem;
font-size: 1rem;
display: block;
}

#sidebar ul li a .fas {
min-width: 20px;
margin-right: 5px;
text-align: center;
}

#sidebar ul li a:hover,
#sidebar ul li a.active {
color: #fff;
background: #2196F3;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
color: inherit;
}

#sidebar ul ul a {
font-size: 1rem;
background: #EEEEEE;
}

#sidebar a[data-toggle="collapse"] {
position: relative;
}

#sidebar .dropdown-toggle::after {
display: block;
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%);
display: none;
}

@media (max-width: 768px) {
#sidebarCollapse span {
display: none;
}
}
107 changes: 107 additions & 0 deletions assets/css/auth.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
/*------------------------------------------------------------------
* Bootstrap Simple Admin Template
* Version: 2.0
* Author: Alexis Luna
* Copyright 2020 Alexis Luna
* Website: https://github.com/alexis-luna/bootstrap-simple-admin-template
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]
1. Body / #body
2. Contents / #auth-content
3. Cards / .card
4. Miscellaneous
5. Adjustments to dafault behaviors
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[1. Body / #body]
*/
body {
background: #f1f1f1;
}

.wrapper {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
overflow: hidden;
min-width: 100%;
min-height: 100vh;
}

/*------------------------------------------------------------------
[2. Contents / #auth-content]
*/
.auth-content {
position: relative;
width: 480px;
padding: 15px;
z-index: 5;
}

/*------------------------------------------------------------------
[3. Cards / .card]
*/
.auth-content .card {
margin-bottom: 0;
-webkit-box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
border: none;
-webkit-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}

.auth-content .card .card-block,
.auth-content .card .card-body {
padding: 30px 25px;
}

.auth-content .form-control {
background: #f4f7fa;
min-height: 42px;
line-height: 42px;
font-size: 14px;
padding: 10px 15px;
height: 42px;
}

/*------------------------------------------------------------------
[4. Miscellaneous]
*/
.shadow-2 {
-webkit-box-shadow: 0 10px 18px 0 rgba(62, 57, 107, 0.2);
box-shadow: 0 10px 18px 0 rgba(62, 57, 107, 0.2);
}

p.text-muted {
font-size: 13px;
}

/*------------------------------------------------------------------
[5. Adjustments to dafault behaviors]
*/
.btn {
padding: 10px 20px;
border-radius: 0.25rem;
font-size: 14px;
margin-bottom: 5px;
margin-right: 10px;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.wrapper a,
.wrapper p>a {
color: #3e8ef7;
font-weight: 600;
}
130 changes: 130 additions & 0 deletions assets/css/error.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
/*------------------------------------------------------------------
* Bootstrap Simple Admin Template
* Version: 2.0
* Author: Alexis Luna
* Copyright 2020 Alexis Luna
* Website: https://github.com/alexis-luna/bootstrap-simple-admin-template
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]
1. Body / .wrapper
2. Contents / .page
3. Miscellaneous
4. Adjustments to dafault behaviors
5. Responsive properties
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[1. Body / .wrapper]
*/
@font-face {
font-family: "Lato";
font-style: normal;
font-weight: 400;
font-display: auto;
src: url("../font/Lato-Regular.eot");
src: url("../font/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("../font/Lato-Regular.woff") format("woff"), url("../font/Lato-Regular.ttf") format("truetype");
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
a,
td,
body {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}

body,
html {
width: 100%;
height: 100%;
background: #f1f1f1;
font-family: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.wrapper {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
overflow: hidden;
min-width: 100%;
min-height: 100vh;
}

/*------------------------------------------------------------------
[2. Contents / .page]
*/
.page {
height: 100%;
max-width: none !important;
margin: 0 !important;
padding: 0;
position: relative;
min-height: calc(100% - 44px);
}

.page header h1 {
font-size: 10em;
font-weight: 400;
}

.page header p {
margin-bottom: 30px;
font-size: 30px;
text-transform: uppercase;
}

.page .error-advise {
margin-bottom: 25px;
color: #a9afb5;
}

/*------------------------------------------------------------------
[3. Miscellaneous]
*/
.page-copyright {
color: #37474f;
font-size: .858rem;
letter-spacing: 1px;
}

/*------------------------------------------------------------------
[4. Adjustments to dafault behaviors]
*/
.btn-round {
border-radius: 1000px;
}

/*------------------------------------------------------------------
[5. Responsive Properties]
*/
@media (max-width: 480px) {
.page header h1 {
font-size: 8em;
}

.page header p {
font-size: 2rem;
}
}
Loading

0 comments on commit 3de6047

Please sign in to comment.