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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. .element-after {
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. }
  39. .join-button {
  40. display: none;
  41. }
  42. &:hover .join-button {
  43. display: block
  44. }
  45. }
  46. .navigate-section-tile-body {
  47. @extend %navigate-section-list-tile-text;
  48. font-weight: normal;
  49. line-height: 24px;
  50. }
  51. .navigate-section-list-tile-info {
  52. flex: 1;
  53. }
  54. .navigate-section-tile-title {
  55. @extend %navigate-section-list-tile-text;
  56. font-weight: bold;
  57. line-height: 24px;
  58. }
  59. .navigate-section-section-header {
  60. @extend %navigate-section-list-text;
  61. font-weight: bold;
  62. margin-bottom: 16px;
  63. }
  64. .navigate-section-list {
  65. position: relative;
  66. margin-top: 36px;
  67. margin-bottom: 36px;
  68. width: 100%;
  69. }
  70. .navigate-section-list-empty {
  71. text-align: center;
  72. }