_list.scss 908 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #list-main {
  2. position: relative;
  3. @include flexbox();
  4. @include flex-direction(column);
  5. @include themify($themes) {
  6. background-color: themed('body-background-color');
  7. &[data-dir="ltr"] {
  8. border-right: 1px solid themed('border-line-color');
  9. border-left: 1px solid themed('border-line-color');
  10. }
  11. &[data-dir="rtl"] {
  12. border-left: 1px solid themed('border-line-color');
  13. border-right: 1px solid themed('border-line-color');
  14. }
  15. }
  16. }
  17. #list-menu {
  18. position: relative;
  19. }
  20. #list-side {
  21. position: relative;
  22. }
  23. .list-section {
  24. &__item {
  25. margin: auto;
  26. padding: 0.25rem 0;
  27. width: 95%;
  28. border-radius: 0.2rem;
  29. &--link {
  30. display: inline-block;
  31. font-size: 1rem;
  32. font-family: $title-font;
  33. margin-top: 0.5rem;
  34. margin-bottom: 0.125rem;
  35. }
  36. &--desc {
  37. font-size: 1rem;
  38. margin: 0.25rem 0;
  39. }
  40. }
  41. }