_list.scss 1006 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. }
  10. &[data-dir="rtl"] {
  11. border-left: 1px solid themed('border-line-color');
  12. }
  13. }
  14. }
  15. #list-menu {
  16. position: relative;
  17. @include themify($themes) {
  18. &[data-dir="ltr"] {
  19. border-right: 1px solid themed('border-line-color');
  20. }
  21. &[data-dir="rtl"] {
  22. border-left: 1px solid themed('border-line-color');
  23. }
  24. }
  25. }
  26. #list-side {
  27. position: relative;
  28. }
  29. .list-section {
  30. &__item {
  31. margin: auto;
  32. padding: 0.25rem 0;
  33. width: 95%;
  34. border-radius: 0.2rem;
  35. &--link {
  36. display: inline-block;
  37. font-size: 1rem;
  38. font-family: $title-font;
  39. margin-top: 0.5rem;
  40. margin-bottom: 0.125rem;
  41. }
  42. &--desc {
  43. font-size: 1rem;
  44. margin: 0.25rem 0;
  45. }
  46. }
  47. }