Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

_navigate_section_list.scss 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. height: 90px;
  17. width: 260px;
  18. border-radius: 4px;
  19. background-color: #1754A9;
  20. margin-right: 8px;
  21. padding: 16px;
  22. display: inline-block;
  23. box-sizing: border-box;
  24. cursor: pointer;
  25. }
  26. .navigate-section-tile-body {
  27. @extend %navigate-section-list-tile-text;
  28. font-weight: normal;
  29. }
  30. .navigate-section-tile-title {
  31. @extend %navigate-section-list-tile-text;
  32. font-weight: bold;
  33. }
  34. .navigate-section-section-header {
  35. @extend %navigate-section-list-text;
  36. font-weight: bold;
  37. margin-bottom: 16px;
  38. }
  39. .navigate-section-list {
  40. position: relative;
  41. margin-top: 36px;
  42. margin-bottom: 36px;
  43. }