Codebase Update
This commit is contained in:
@ -0,0 +1,73 @@
|
||||
.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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,3 @@
|
||||
.map {
|
||||
height: 500px;
|
||||
}
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,30 @@
|
||||
.card-tasks {
|
||||
height: 473px;
|
||||
|
||||
.table-full-width {
|
||||
max-height: 410px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
.title {
|
||||
margin-right: 20px;
|
||||
font-weight: $font-weight-normal;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
float: right;
|
||||
color: darken($white, 20%);
|
||||
}
|
||||
}
|
||||
|
||||
.card-body {
|
||||
i {
|
||||
color: $dark-gray;
|
||||
font-size: 1.4em;
|
||||
&:hover {
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -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