123456789101112131415161718192021222324252627282930 |
- /**
- * @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;
- }
|