_page_list.scss 1022 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. body .page-list {
  2. .page-list-container {
  3. font-size: 15px;
  4. line-height: 1.6em;
  5. }
  6. .page-list-ul {
  7. padding-left: 0;
  8. margin: 0;
  9. > li {
  10. margin: 0;
  11. list-style: none;
  12. > a {
  13. padding: 0px;
  14. color: inherit;
  15. &:hover {
  16. color: inherit;
  17. }
  18. }
  19. }
  20. .picture {
  21. width: 16px;
  22. height: 16px;
  23. }
  24. .page-list-meta {
  25. font-size: 0.9em;
  26. > span {
  27. margin-right: 0.3rem;
  28. }
  29. i {
  30. margin-right: 2px;
  31. }
  32. }
  33. // after second level indent
  34. .page-list-ul {
  35. padding-left: 2rem;
  36. }
  37. // override .page-list-ul
  38. &.page-list-ul-flat {
  39. padding-left: 0;
  40. }
  41. }
  42. }
  43. .popular-page-high {
  44. font-size: 1.1em;
  45. font-weight: bold;
  46. color: darken($red, 5%);
  47. }
  48. .popular-page-mid {
  49. font-weight: bold;
  50. color: #e47800;
  51. }
  52. .popular-page-low {
  53. color: #ab7c7c;
  54. }
  55. .card-timeline {
  56. border: 1px solid $gray-300;
  57. > .card-header {
  58. background-color: $gray-300;
  59. }
  60. }