Skip to content

Commit

Permalink
Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
puikinsh committed Mar 8, 2018
0 parents commit a2cdfa4
Show file tree
Hide file tree
Showing 774 changed files with 170,589 additions and 0 deletions.
625 changes: 625 additions & 0 deletions app-profile.html

Large diffs are not rendered by default.

479 changes: 479 additions & 0 deletions chart-amchart.html

Large diffs are not rendered by default.

512 changes: 512 additions & 0 deletions chart-chartist.html

Large diffs are not rendered by default.

552 changes: 552 additions & 0 deletions chart-chartjs.html

Large diffs are not rendered by default.

538 changes: 538 additions & 0 deletions chart-echart.html

Large diffs are not rendered by default.

521 changes: 521 additions & 0 deletions chart-flot.html

Large diffs are not rendered by default.

490 changes: 490 additions & 0 deletions chart-morris.html

Large diffs are not rendered by default.

669 changes: 669 additions & 0 deletions chart-peity.html

Large diffs are not rendered by default.

672 changes: 672 additions & 0 deletions chart-sparkline.html

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions css/animate.css

Large diffs are not rendered by default.

1,491 changes: 1,491 additions & 0 deletions css/helper.css

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions css/less/advance-widget.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
@import "variable.less"; // Variable.less

.media-text-right {
text-align: right;
}

.media-text-left {
text-align: left;
}

.boxshadow-none {
box-shadow: none;
}

.progress-sm {
height: 8px;
}

.bg-warning-dark {
background: @warning-dark;
}

.bg-info-dark {
background: @info-dark;
}

.bg-danger-dark {
background: @danger-dark;
}

.bg-success-dark {
background: @success-dark;
}

.bg-primary-dark {
background: @primary-dark;
}

.widget-card-circle {
i {
font-size: 30px;
left: 0;
line-height: 97px;
right: 0;
text-align: center;
}
}

.widget-line-list {
li {
display: inline-block;
font-size: 1.2em;
line-height: 27px;
padding: 5px 20px 0 15px;

span {
font-size: 14px;
}
}
}
115 changes: 115 additions & 0 deletions css/less/amchart.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
@import "variable.less"; // Variable.less



#chartdiv3 {
height: 450px;
width: 100%;
}
#chartdiv {
height: 450px;
width: 100%;
}

#zoomable {
height: 450px;
width: 100%;
}
#chartMap {
height: 450px;
width: 100%;
}

.amcharts-graph-g2 .amcharts-graph-stroke {
stroke-dasharray: 3px 3px;
stroke-linejoin: round;
stroke-linecap: round;
-webkit-animation: am-moving-dashes 1s linear infinite;
animation: am-moving-dashes 1s linear infinite;
}

@-webkit-keyframes am-moving-dashes {
100% {
stroke-dashoffset: -31px;
}
}
@keyframes am-moving-dashes {
100% {
stroke-dashoffset: -31px;
}
}


.lastBullet {
-webkit-animation: am-pulsating 1s ease-out infinite;
animation: am-pulsating 1s ease-out infinite;
}
@-webkit-keyframes am-pulsating {
0% {
stroke-opacity: 1;
stroke-width: 0px;
}
100% {
stroke-opacity: 0;
stroke-width: 50px;
}
}
@keyframes am-pulsating {
0% {
stroke-opacity: 1;
stroke-width: 0px;
}
100% {
stroke-opacity: 0;
stroke-width: 50px;
}
}

.amcharts-graph-column-front {
-webkit-transition: all .3s .3s ease-out;
transition: all .3s .3s ease-out;
}
.amcharts-graph-column-front:hover {
fill: #496375;
stroke: #496375;
-webkit-transition: all .3s ease-out;
transition: all .3s ease-out;
}

.amcharts-graph-g3 {
stroke-linejoin: round;
stroke-linecap: round;
stroke-dasharray: 500%;
stroke-dasharray: 0 /; /* fixes IE prob */
stroke-dashoffset: 0 /; /* fixes IE prob */
-webkit-animation: am-draw 40s;
animation: am-draw 40s;
}
@-webkit-keyframes am-draw {
0% {
stroke-dashoffset: 500%;
}
100% {
stroke-dashoffset: 0%;
}
}
@keyframes am-draw {
0% {
stroke-dashoffset: 500%;
}
100% {
stroke-dashoffset: 0%;
}
}












146 changes: 146 additions & 0 deletions css/less/badge.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
.badge {
font-weight: 400;
}

.badge-xs {
font-size: 9px;
-webkit-transform: translate(0, -2px);
-ms-transform: translate(0, -2px);
-o-transform: translate(0, -2px);
transform: translate(0, -2px);
}

.badge-sm {
-webkit-transform: translate(0, -2px);
-ms-transform: translate(0, -2px);
-o-transform: translate(0, -2px);
transform: translate(0, -2px);
}

.badge-success {
background-color: #26dad2;
}

.badge-info {
background-color: #1976d2;
}

.badge-primary {
background-color: #5c4ac7;
}

.badge-warning {
background-color: #ffb22b;
}

.badge-danger {
background-color: #ef5350;
}

.badge-purple {
background-color: #7460ee;
}

.badge-red {
background-color: #fb3a3a;
}

.badge-inverse {
background-color: #2f3d4a;
}

.label {
padding: 3px 10px;
line-height: 13px;
color: #ffffff;
font-weight: 400;
border-radius: 4px;
font-size: 75%;
}

.label-rounded {
border-radius: 60px;
}

.label-custom {
background-color: #00897b;
}

.label-success {
background-color: #26dad2;
}

.label-info {
background-color: #1976d2;
}

.label-warning {
background-color: #ffb22b;
}

.label-danger {
background-color: #ef5350;
}

.label-megna {
background-color: #00897b;
}

.label-primary {
background-color: #5c4ac7;
}

.label-purple {
background-color: #7460ee;
}

.label-red {
background-color: #fb3a3a;
}

.label-inverse {
background-color: #2f3d4a;
}

.label-default {
background-color: #f2f4f8;
}

.label-white {
background-color: #ffffff;
}

.label-light-success {
background-color: #e8fdeb;
color: #26dad2;
}

.label-light-info {
background-color: #cfecfe;
color: #1976d2;
}

.label-light-warning {
background-color: #fff8ec;
color: #ffb22b;
}

.label-light-danger {
background-color: #f9e7eb;
color: #ef5350;
}

.label-light-megna {
background-color: #e0f2f4;
color: #00897b;
}

.label-light-primary {
background-color: #f1effd;
color: #5c4ac7;
}

.label-light-inverse {
background-color: #f6f6f6;
color: #2f3d4a;
}
23 changes: 23 additions & 0 deletions css/less/booking-system.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@import "variable.less"; // Variable.less
.booking-system-feedback {
top: 5px !important;
right: 15px;
}
.booking-system-top {
padding-top: 15px;
}
.media {
// padding-top: 20px;
}
.media-body {
// padding-top: 9px;
vertical-align: middle;
span {
font-size: 10px;
color: @primary;
}
p {
color: @text-light;
line-height: 15px;
}
}
42 changes: 42 additions & 0 deletions css/less/breadcrumb.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
.breadcrumb {
margin-bottom: 0;
}

.page-titles {
background: #ffffff;
margin: 0 0 30px;
padding: 15px 10px;
position: relative;
z-index: 10;
-webkit-box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1);
box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1);

h3 {
margin-bottom: 0;
margin-top: 0;
}

.breadcrumb {
padding: 0;
background: transparent;
font-size: 14px;

li {
margin-top: 0;
margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item {
&:before {
content: "\e649";
font-family: themify;
color: #a6b7bf;
font-size: 11px;
}
}

.breadcrumb-item.active {
color: #99abb4;
}
}
}
Loading

0 comments on commit a2cdfa4

Please sign in to comment.