_page_growi.scss 788 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .growi {
  2. header {
  3. // Adjust to be on top of the growi subnavigation
  4. z-index: $zindex-sticky - 100;
  5. ul.authors {
  6. padding-left: 1.5em;
  7. margin: 0;
  8. li {
  9. font-size: 12px;
  10. list-style: none;
  11. }
  12. .picture {
  13. width: 22px;
  14. height: 22px;
  15. border: 1px solid #ccc;
  16. &.picture-xs {
  17. width: 14px;
  18. height: 14px;
  19. }
  20. }
  21. }
  22. .grw-compact-subnavbar {
  23. h2 {
  24. font-size: 20px;
  25. line-height: 1.1em;
  26. @include media-breakpoint-down(md) {
  27. font-size: 18px;
  28. }
  29. @include media-breakpoint-down(sm) {
  30. font-size: 14px;
  31. }
  32. @include media-breakpoint-down(xs) {
  33. font-size: 12px;
  34. }
  35. }
  36. }
  37. }
  38. }