31 lines
455 B
CSS
31 lines
455 B
CSS
/**
|
|
* @file
|
|
* Presentational styles for Drupal stark theme layout.
|
|
*
|
|
* It is left empty for testing purposes.
|
|
*
|
|
* @see https://www.drupal.org/project/drupal/issues/2349711
|
|
*/
|
|
article img,
|
|
.side_notes img{
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.layout-content > div{
|
|
display: flex;
|
|
}
|
|
.side_notes{
|
|
position: relative;
|
|
}
|
|
|
|
.side_notes > *{
|
|
position: absolute;
|
|
width: 300px;
|
|
}
|
|
|
|
.side_notes .d-flex {
|
|
flex-direction: column;
|
|
}
|