Skip to content
This repository has been archived by the owner on Mar 1, 2025. It is now read-only.

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Posandu authored May 13, 2021
1 parent 8749a6e commit d2c37b9
Show file tree
Hide file tree
Showing 27 changed files with 18,857 additions and 0 deletions.
7,467 changes: 7,467 additions & 0 deletions dist/css/style.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/css/style.min.css

Large diffs are not rendered by default.

3,353 changes: 3,353 additions & 0 deletions dist/js/script.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/js/script.min.js

Large diffs are not rendered by default.

74 changes: 74 additions & 0 deletions src/scss/components/appbar.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
//App bar
.appbar {
background: $p;
padding: 6px 16px 2px 16px;
color: white;
display: block;
transition:all 0.2s ease , top 0.5s ease;
height: 60px;
width: 100%;
}
.appbar .name {
transform: translateY(-70%);
display: inline-block;
width: max-content;
position: relative;
font-size: 1.25rem;
margin-left: 12px;
font-weight: 500;
margin-bottom: -30px;
}
.appbar a:not(.name) {
color: white;
font-size: 24px;
position: relative;
padding: 24px 24px;
display: inline-block;
background: #0d0b0b00;
border-radius: 100px;
margin-right: 5px;
transition: all 0.2s ease;
}
.appbar a:not(.name):hover {
background: rgba(255, 255, 255, 0.2);
user-select: none;
}
.appbar a:not(.name):active , .appbar a:not(.name):focus {
background: rgba(255, 255, 255, 0.3);
}
.appbar a:not(.name) .material-icons {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50% , -50%);
font-size: 24px;
}
.appbar.fixed {
position: fixed;
top: 0;
z-index: 999;
left: 0;
width: 100%;
}
.appbar.fixed.up {
top: -50%;
}
.appbar .name.no-icon {
transform: translateY(40%);
}
.appbar.dense {
padding: 1px 16px 0px 16px;
height: 50px;
}
.appbar.short {
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
width: 18%;
border-radius: 0px 0px 40px 0px;
transition: all 0.2s;
}
.appbar.short .name {
display: none;
}
.appbar.short .float-right {
display: contents;
}
21 changes: 21 additions & 0 deletions src/scss/components/badges.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.badge {
display: inline;
font-size: 12px;
background: $p;
color: #fff;
padding: 8px 10px;
border-radius: 4px;
margin: 0px 5px;
}
.badge.secondary {
background:$s;
}
.badge.dark {
background:$bl;
}
.badge.danger {
background:$d;
}
.badge.success {
background:$su;
}
17 changes: 17 additions & 0 deletions src/scss/components/breadcrumbs.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.breadcrumb {
display: block;
list-style: none;
}
.breadcrumb .item {
display: inline-block;
color: #535353;
font-size: 16px;
margin: 0px 8px 0px 0px;
}
.breadcrumb .item:not(:last-of-type):after {
content:"/";
margin-left: 10px;
}
.breadcrumb .item.active {
color: #171717;
}
Loading

0 comments on commit d2c37b9

Please sign in to comment.