You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
342B

  1. /*===========*/
  2. /* The Cover */
  3. /*===========*/
  4. .cover {
  5. --space: var(--s1);
  6. display: flex;
  7. flex-direction: column;
  8. min-height: 100vh;
  9. padding: var(--space);
  10. }
  11. .cover > * {
  12. margin-top: 1rem;
  13. margin-bottom: 1rem;
  14. }
  15. .cover > :first-child:not(h1) {
  16. margin-top: 0;
  17. }
  18. .cover > h1 {
  19. margin-top: auto;
  20. margin-bottom: auto;
  21. }