2016-08-10 21:36:11 +02:00
|
|
|
/**
|
|
|
|
* Styles for Artist component.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Variables */
|
|
|
|
$artMarginBottom: 10px;
|
|
|
|
|
2016-07-29 23:57:21 +02:00
|
|
|
.name > h1 {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.name > hr {
|
|
|
|
margin-top: 0.5em; /* Default value. */
|
|
|
|
}
|
|
|
|
|
|
|
|
.art {
|
2016-08-10 21:36:11 +02:00
|
|
|
display: inline-block;
|
|
|
|
margin-bottom: $artMarginBottom;
|
|
|
|
width: 75%;
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
/* doiuse-disable viewport-units */
|
|
|
|
|
|
|
|
max-width: 25vw;
|
|
|
|
|
|
|
|
/* doiuse-enable viewport-units */
|
|
|
|
}
|
|
|
|
|
|
|
|
.art:hover {
|
|
|
|
transform: scale(1.1);
|
2016-07-29 23:57:21 +02:00
|
|
|
}
|