Files
socialhose-php/frontend/app/styles/widgets/content-boxes/_content-boxes.scss
T
2022-12-09 08:36:26 -06:00

84 lines
1.3 KiB
SCSS

// Content Boxes
// Variables
$widget-spacer: $spacer;
.widget-content {
padding: $widget-spacer;
flex-direction: row;
align-items: center;
.widget-content-wrapper {
display: flex;
flex: 1;
position: relative;
align-items: center;
}
.widget-content-left {
.widget-heading {
opacity: .8;
font-weight: bold;
}
.widget-subheading {
opacity: .5;
}
}
.widget-content-right {
margin-inline-start: auto;
}
.widget-numbers {
font-weight: bold;
font-size: 1.8rem;
display: block;
}
.widget-content-outer {
display: flex;
flex: 1;
flex-direction: column;
}
.widget-progress-wrapper {
margin-top: $widget-spacer;
.progress-sub-label {
margin-top: ($widget-spacer / 3);
opacity: .5;
display: flex;
align-content: center;
align-items: center;
.sub-label-left {
}
.sub-label-right {
margin-inline-start: auto;
}
}
}
.widget-content-right {
&.widget-content-actions {
visibility: hidden;
opacity: 0;
transition: opacity .2s;
}
}
&:hover {
.widget-content-right {
&.widget-content-actions {
visibility: visible;
opacity: 1;
}
}
}
}