_page_growi.scss 840 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .growi.main-container {
  2. header {
  3. div.title-logo-container {
  4. display: none; // hide in default
  5. a {
  6. width: 32px;
  7. height: 32px;
  8. // centering
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. img {
  13. width: 16px;
  14. height: 16px;
  15. }
  16. }
  17. }
  18. ul.authors {
  19. margin: 0;
  20. li {
  21. list-style: none;
  22. font-size: 12px;
  23. }
  24. .picture {
  25. width: 22px;
  26. height: 22px;
  27. border: 1px solid #ccc;
  28. }
  29. }
  30. }
  31. /*
  32. * affix header
  33. */
  34. header.affix {
  35. // show logo link
  36. div.title-logo-container {
  37. display: unset;
  38. margin-left: -12px;
  39. margin-right: 6px;
  40. }
  41. // hide authors in affix
  42. .authors {
  43. display: none !important;
  44. }
  45. }
  46. }