_page_crowi-plus.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .crowi-plus.main-container {
  2. .flex-title-line {
  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. // the container of h1
  19. div.title-container {
  20. margin-right: auto;
  21. }
  22. ul.authors {
  23. margin: 0;
  24. li {
  25. display: flex;
  26. list-style: none;
  27. font-size: 12px;
  28. .creator-picture {
  29. width: 24px;
  30. height: 24px;
  31. margin-right: 10px;
  32. }
  33. }
  34. li:first-child {
  35. margin-bottom: 10px;
  36. }
  37. }
  38. }
  39. /*
  40. * affix header
  41. */
  42. .main #page-header.affix {
  43. // show logo link
  44. div.title-logo-container {
  45. display: unset;
  46. margin-left: -12px;
  47. margin-right: 6px;
  48. }
  49. // hide authors in affix
  50. .authors {
  51. display: none !important;
  52. }
  53. }
  54. }
  55. // for not_found.html
  56. .crowi-plus.main-container {
  57. .message-not-found {
  58. margin-left: 0;
  59. }
  60. .content-main.content-main-not-found {
  61. .nav {
  62. margin-top: 32px;
  63. }
  64. }
  65. }
  66. .crowi-plus .crowi-plus-widget.page-list-container {
  67. margin-top: 30px;
  68. .tab-content {
  69. margin-top: 15px;
  70. }
  71. }