您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

26 行
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. }