inicios del FrontEnd
This commit is contained in:
84
APP/assets/sass/dashboard/custom/cards/_card-chart.scss
Normal file
84
APP/assets/sass/dashboard/custom/cards/_card-chart.scss
Normal file
@@ -0,0 +1,84 @@
|
||||
.card-chart {
|
||||
overflow: hidden;
|
||||
.card-header{
|
||||
.card-title{
|
||||
i{
|
||||
font-size: 16px;
|
||||
margin-right: 5px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
}
|
||||
.card-category{
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
.card-body{
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
.tab-space{
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
.table{
|
||||
margin-bottom: 0;
|
||||
|
||||
td{
|
||||
border-top: none;
|
||||
border-bottom: 1px solid rgba($white,0.1);
|
||||
}
|
||||
}
|
||||
|
||||
.card-progress {
|
||||
margin-top: 30px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.chart-area {
|
||||
height: 220px;
|
||||
width: 100%;
|
||||
}
|
||||
.card-footer {
|
||||
margin-top: 15px;
|
||||
|
||||
.stats{
|
||||
color: $dark-gray;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown{
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
top: 20px;
|
||||
|
||||
.btn{
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.card-chart-pie{
|
||||
.chart-area{
|
||||
padding: 10px 0 25px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.card-title{
|
||||
margin-bottom: 10px;
|
||||
i{
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(sm) {
|
||||
.card.card-chart {
|
||||
.card-header .btn-group-toggle {
|
||||
.tim-icons {
|
||||
font-size: $font-size-base;
|
||||
top: -1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
3
APP/assets/sass/dashboard/custom/cards/_card-map.scss
Normal file
3
APP/assets/sass/dashboard/custom/cards/_card-map.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
.map{
|
||||
height: 500px;
|
||||
}
|
||||
16
APP/assets/sass/dashboard/custom/cards/_card-plain.scss
Normal file
16
APP/assets/sass/dashboard/custom/cards/_card-plain.scss
Normal file
@@ -0,0 +1,16 @@
|
||||
.card-plain {
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
|
||||
.card-header,
|
||||
.card-footer {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
&:not(.card-subcategories).card-body {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
49
APP/assets/sass/dashboard/custom/cards/_card-profile.scss
Normal file
49
APP/assets/sass/dashboard/custom/cards/_card-profile.scss
Normal file
@@ -0,0 +1,49 @@
|
||||
%card-profile{
|
||||
margin-top: 30px;
|
||||
text-align: center;
|
||||
|
||||
.card-body .card-title{
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
[class*=col-]{
|
||||
.card-description{
|
||||
margin-bottom: 0;
|
||||
|
||||
& + .card-footer{
|
||||
margin-top: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
.card-header-avatar{
|
||||
max-width: 130px;
|
||||
max-height: 130px;
|
||||
margin: -60px auto 0;
|
||||
|
||||
img{
|
||||
border-radius: 50% !important;
|
||||
}
|
||||
|
||||
& + .card-body{
|
||||
margin-top: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
&.card-plain{
|
||||
.card-header-avatar{
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
.card-body{
|
||||
.card-avatar{
|
||||
margin: 0 auto 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-profile{
|
||||
@extend %card-profile;
|
||||
}
|
||||
77
APP/assets/sass/dashboard/custom/cards/_card-user.scss
Normal file
77
APP/assets/sass/dashboard/custom/cards/_card-user.scss
Normal file
@@ -0,0 +1,77 @@
|
||||
.card-user{
|
||||
overflow: hidden;
|
||||
.image{
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
.author{
|
||||
text-align: center;
|
||||
text-transform: none;
|
||||
margin-top: 25px;
|
||||
|
||||
a + p.description{
|
||||
margin-top: -7px;
|
||||
}
|
||||
|
||||
.block{
|
||||
position: absolute;
|
||||
height: 100px;
|
||||
width: 250px;
|
||||
&.block-one{
|
||||
@include linear-gradient-right(rgba($primary,0.6), rgba($primary,0));
|
||||
@include nc-rotate(150deg,10);
|
||||
margin-top: -90px;
|
||||
margin-left: -50px;
|
||||
}
|
||||
|
||||
&.block-two{
|
||||
@include linear-gradient-right(rgba($primary,0.6), rgba($primary,0));
|
||||
@include nc-rotate(30deg,10);
|
||||
margin-top: -40px;
|
||||
margin-left: -100px;
|
||||
}
|
||||
|
||||
&.block-three{
|
||||
@include linear-gradient-right(rgba($primary,0.6), rgba($primary,0));
|
||||
@include nc-rotate(170deg,10);
|
||||
margin-top: -70px;
|
||||
right: -45px;
|
||||
|
||||
}
|
||||
|
||||
&.block-four{
|
||||
@include linear-gradient-right(rgba($primary,0.6), rgba($primary,0));
|
||||
@include nc-rotate(150deg,10);
|
||||
margin-top: -25px;
|
||||
right: -45px;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.avatar{
|
||||
width: 124px;
|
||||
height: 124px;
|
||||
border: 5px solid lighten($black,5%);
|
||||
border-bottom-color: $transparent-bg;
|
||||
background-color: $transparent-bg;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.card-body{
|
||||
min-height: 240px;
|
||||
}
|
||||
|
||||
hr{
|
||||
margin: 5px 15px;
|
||||
}
|
||||
|
||||
.button-container{
|
||||
margin-bottom: 6px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card-description {
|
||||
margin-top: 30px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user