24 lines
636 B
SCSS
24 lines
636 B
SCSS
// ----------------------------------------------------------------------------
|
|
// Sass declarations
|
|
// ----------------------------------------------------------------------------
|
|
$background-color: #2d2e29;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Widget-image styles
|
|
// ----------------------------------------------------------------------------
|
|
.widget-random-aww {
|
|
|
|
background-color: $background-color;
|
|
|
|
.image_container {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
} |