26 lines
342 B
CSS
26 lines
342 B
CSS
|
/*===========*/
|
||
|
/* The Cover */
|
||
|
/*===========*/
|
||
|
|
||
|
.cover {
|
||
|
--space: var(--s1);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
min-height: 100vh;
|
||
|
padding: var(--space);
|
||
|
}
|
||
|
|
||
|
.cover > * {
|
||
|
margin-top: 1rem;
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
|
||
|
.cover > :first-child:not(h1) {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
.cover > h1 {
|
||
|
margin-top: auto;
|
||
|
margin-bottom: auto;
|
||
|
}
|