_page_crowi-plus.scss 565 B

123456789101112131415161718192021222324252627282930313233343536
  1. .crowi-plus.main-container {
  2. .flex-title-line {
  3. // the container of h1
  4. div:first-child {
  5. margin-right: auto;
  6. }
  7. ul.authors {
  8. margin: 0;
  9. li {
  10. display: flex;
  11. list-style: none;
  12. font-size: 12px;
  13. .creator-picture {
  14. width: 24px;
  15. height: 24px;
  16. margin-right: 10px;
  17. }
  18. }
  19. li:first-child {
  20. margin-bottom: 10px;
  21. }
  22. }
  23. }
  24. // hide authors from affix
  25. .main #page-header.affix {
  26. .authors {
  27. display: none !important;
  28. }
  29. }
  30. }