_resources.scss 802 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // Resources Page
  2. .resources {
  3. .page-header {
  4. padding-top: 69px;
  5. }
  6. .table td > a {
  7. font-weight: 600;
  8. }
  9. .badge {
  10. vertical-align: middle;
  11. font-size: 65%;
  12. }
  13. }
  14. .resource-name {
  15. width: 200px;
  16. }
  17. // Sidebar
  18. .resources-sidebar {
  19. .sticky-top {
  20. z-index: 1;
  21. padding-top: 69px;
  22. padding-bottom: 15px;
  23. .nav-link {
  24. margin: 0.25rem 0;
  25. padding: 0 0.5rem;
  26. color: $gray-800;
  27. border-left: 2px solid transparent;
  28. font-size: 0.85rem;
  29. &.active {
  30. color: theme-color("primary");
  31. border-left: 2px solid theme-color("primary");
  32. font-weight: bold;
  33. }
  34. }
  35. > ul.nav > li.nav-item > .nav {
  36. display: none;
  37. }
  38. > ul.nav > li.nav-item > a.nav-link.active ~ .nav {
  39. display: flex;
  40. }
  41. }
  42. }