AdminLTE/build/scss/_small-box.scss

154 lines
2.2 KiB
SCSS
Raw Normal View History

//
// Component: Small Box
//
2015-10-31 22:00:16 +01:00
.small-box {
2018-04-15 01:33:53 +02:00
@include border-radius($border-radius);
@include box-shadow($card-shadow);
2018-03-17 18:07:55 +01:00
@extend .mb-3;
2018-04-15 01:33:53 +02:00
2015-10-31 22:00:16 +01:00
display: block;
margin-bottom: 20px;
position: relative;
2018-03-17 18:07:55 +01:00
2015-10-31 22:00:16 +01:00
// content wrapper
> .inner {
padding: 10px;
}
> .small-box-footer {
background: rgba($black, 0.1);
color: rgba($white, 0.8);
2015-10-31 22:00:16 +01:00
display: block;
padding: 3px 0;
position: relative;
text-align: center;
2015-10-31 22:00:16 +01:00
text-decoration: none;
z-index: 10;
2015-10-31 22:00:16 +01:00
&:hover {
background: rgba($black, 0.15);
2018-03-17 18:07:55 +01:00
color: $white;
2015-10-31 22:00:16 +01:00
}
}
h3 {
@include font-size(2.2rem);
2015-10-31 22:00:16 +01:00
font-weight: bold;
margin: 0 0 10px 0;
padding: 0;
white-space: nowrap;
}
@include media-breakpoint-up(lg) {
.col-xl-2 &,
.col-lg-2 &,
.col-md-2 & {
h3 {
@include font-size(1.6rem);
}
}
2015-10-31 22:00:16 +01:00
.col-xl-3 &,
.col-lg-3 &,
.col-md-3 & {
h3 {
@include font-size(1.6rem);
}
}
}
@include media-breakpoint-up(xl) {
.col-xl-2 &,
.col-lg-2 &,
.col-md-2 & {
h3 {
@include font-size(2.2rem);
}
}
.col-xl-3 &,
.col-lg-3 &,
.col-md-3 & {
h3 {
@include font-size(2.2rem);
}
}
2015-10-31 22:00:16 +01:00
}
p {
font-size: 1rem;
2015-10-31 22:00:16 +01:00
> small {
color: $gray-100;
display: block;
font-size: 0.9rem;
2015-10-31 22:00:16 +01:00
margin-top: 5px;
}
}
h3,
p {
2018-03-17 18:07:55 +01:00
z-index: 5;
2015-10-31 22:00:16 +01:00
}
// the icon
.icon {
color: rgba($black, 0.15);
2015-10-31 22:00:16 +01:00
z-index: 0;
> i {
font-size: 90px;
position: absolute;
right: 15px;
top: 15px;
transition: all $transition-speed linear;
&.fa,
&.fas,
&.far,
&.fab,
&.glyphicon,
&.ion {
font-size: 70px;
top: 20px;
}
}
2015-10-31 22:00:16 +01:00
}
// Small box hover state
&:hover {
text-decoration: none;
2015-10-31 22:00:16 +01:00
// Animate icons on small box hover
.icon > i {
2015-10-31 22:00:16 +01:00
font-size: 95px;
&.fa,
&.fas,
&.far,
&.fab,
&.glyphicon,
&.ion {
font-size: 75px;
}
2015-10-31 22:00:16 +01:00
}
}
}
2016-01-16 17:27:23 +01:00
@include media-breakpoint-down(sm) {
2015-10-31 22:00:16 +01:00
// No need for icons on very small devices
.small-box {
text-align: center;
2015-10-31 22:00:16 +01:00
.icon {
display: none;
}
2015-10-31 22:00:16 +01:00
p {
font-size: 12px;
}
}
}