You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

flexcontainer.css 703B

123456789101112131415161718192021222324252627282930313233
  1. /* container for full-page content with sidebar on left */
  2. .flex-container {
  3. display: flex !important;
  4. gap: var(--page-spacing);
  5. margin-top: var(--page-spacing);
  6. }
  7. /* small options menu on the left, used in settings/admin pages */
  8. .flex-container-nav {
  9. width: 240px;
  10. }
  11. /* wide sidebar on the right, used in frontpage */
  12. .flex-container-sidebar {
  13. width: 35%;
  14. }
  15. .flex-container-main {
  16. flex: 1;
  17. min-width: 0; /* make the "text truncate" work, otherwise the flex axis is not limited and the text just overflows */
  18. }
  19. @media (max-width: 767.98px) {
  20. .flex-container {
  21. flex-direction: column;
  22. }
  23. .flex-container-nav,
  24. .flex-container-sidebar {
  25. order: -1;
  26. width: auto;
  27. }
  28. }