_list.scss 992 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. }
  8. }
  9. #list-menu {
  10. @include themify($themes) {
  11. &[data-dir="ltr"] {
  12. border-right: 1px solid themed('border-line-color');
  13. }
  14. &[data-dir="rtl"] {
  15. border-left: 1px solid themed('border-line-color');
  16. }
  17. }
  18. }
  19. #list-side {
  20. @include themify($themes) {
  21. &[data-dir="ltr"] {
  22. border-left: 1px solid themed('border-line-color');
  23. }
  24. &[data-dir="rtl"] {
  25. border-right: 1px solid themed('border-line-color');
  26. }
  27. }
  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. }