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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. }
  32. .navigate-section-tile-body {
  33. @extend %navigate-section-list-tile-text;
  34. font-weight: normal;
  35. }
  36. .navigate-section-list-tile-info {
  37. flex: 1;
  38. }
  39. .navigate-section-tile-title {
  40. @extend %navigate-section-list-tile-text;
  41. font-weight: bold;
  42. }
  43. .navigate-section-section-header {
  44. @extend %navigate-section-list-text;
  45. font-weight: bold;
  46. margin-bottom: 16px;
  47. }
  48. .navigate-section-list {
  49. position: relative;
  50. margin-top: 36px;
  51. margin-bottom: 36px;
  52. width: 100%;
  53. }
  54. .navigate-section-list-empty {
  55. text-align: center;
  56. }