You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_navigate_section_list.scss 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. %navigate-section-list-text {
  2. width: 100%;
  3. font-size: 14px;
  4. line-height: 20px;
  5. color: $welcomePageTitleColor;
  6. text-align: left;
  7. font-family: 'open_sanslight', Helvetica, sans-serif;
  8. }
  9. %navigate-section-list-tile-text {
  10. @extend %navigate-section-list-text;
  11. overflow: hidden;
  12. text-overflow: ellipsis;
  13. float: left;
  14. }
  15. .navigate-section-list-tile {
  16. background-color: #1754A9;
  17. border-radius: 4px;
  18. box-sizing: border-box;
  19. display: inline-flex;
  20. height: 100px;
  21. margin-bottom: 8px;
  22. margin-right: 8px;
  23. padding: 16px;
  24. width: 100%;
  25. &.with-click-handler {
  26. cursor: pointer;
  27. }
  28. &.with-click-handler:hover {
  29. background-color: #1a5dbb;
  30. }
  31. i {
  32. cursor: inherit;
  33. }
  34. }
  35. .navigate-section-tile-body {
  36. @extend %navigate-section-list-tile-text;
  37. font-weight: normal;
  38. }
  39. .navigate-section-list-tile-info {
  40. flex: 1;
  41. }
  42. .navigate-section-tile-title {
  43. @extend %navigate-section-list-tile-text;
  44. font-weight: bold;
  45. }
  46. .navigate-section-section-header {
  47. @extend %navigate-section-list-text;
  48. font-weight: bold;
  49. margin-bottom: 16px;
  50. }
  51. .navigate-section-list {
  52. position: relative;
  53. margin-top: 36px;
  54. margin-bottom: 36px;
  55. width: 100%;
  56. }
  57. .navigate-section-list-empty {
  58. text-align: center;
  59. }