This commit is contained in:
Hoang Huu 2019-09-25 16:33:43 +07:00
commit 82fa1a6d3d
4 changed files with 21 additions and 4 deletions

BIN
assets/images/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

@ -3855,7 +3855,8 @@ header#masthead {
.card-item .opalestate-admin-box { .card-item .opalestate-admin-box {
box-shadow: none; } box-shadow: none; }
.card-item.dash-widget { .card-item.dash-widget {
padding: 40px; } padding: 40px;
position: relative; }
.card-item.dash-widget h5 { .card-item.dash-widget h5 {
text-align: left; text-align: left;
color: #FFF; color: #FFF;
@ -3863,11 +3864,17 @@ header#masthead {
margin: 0; } margin: 0; }
.card-item.dash-widget .heading { .card-item.dash-widget .heading {
border: 0; border: 0;
color: #FFF;
margin: 0; margin: 0;
padding: 0; } padding: 0;
color: #FFF; }
.card-item.dash-widget .heading span { .card-item.dash-widget .heading span {
color: #FFF; } color: #FFF; }
.card-item.dash-widget .dash-widget-icon {
position: absolute;
top: 15px;
right: 30px;
color: rgba(255, 255, 255, 0.1);
font-size: 75px; }
.card-item.dash-widget.dash-published-listings { .card-item.dash-widget.dash-published-listings {
background-color: #2f73e9; } background-color: #2f73e9; }
.card-item.dash-widget.dash-featured-listings { .card-item.dash-widget.dash-featured-listings {

@ -272,8 +272,10 @@
.opalestate-admin-box { .opalestate-admin-box {
box-shadow: none; box-shadow: none;
} }
&.dash-widget { &.dash-widget {
padding: 40px; padding: 40px;
position: relative;
h5 { h5 {
text-align: left; text-align: left;
color: $white; color: $white;
@ -282,12 +284,20 @@
} }
.heading { .heading {
border:0; border:0;
margin: 0;
padding:0;
color: $white; color: $white;
margin: 0; padding:0;
span { span {
color: $white; color: $white;
} }
} }
.dash-widget-icon {
position: absolute;
top:$grid-gutter-width/2;
right:$grid-gutter-width;
color: rgba(255,255,255,0.1);
font-size:75px;
}
&.dash-published-listings { &.dash-published-listings {
background-color: $primary; background-color: $primary;
} }