Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

119 řádky
2.1 KiB

  1. @import '../colors';
  2. ion-content {
  3. --background: white;
  4. }
  5. .action-buttons {
  6. display: flex;
  7. justify-content: space-between;
  8. align-items: flex-start;
  9. padding: 0 3% 0 0%;
  10. height: 70px;
  11. position: sticky;
  12. left: 0;
  13. top: 0;
  14. background-color: lighten($blue-grey, 35%);
  15. z-index: 2;
  16. width: 100%;
  17. align-items: center;
  18. box-shadow: 0px 0px 5px $brand-blue;
  19. button {
  20. background-color: transparent;
  21. border: none;
  22. }
  23. .nav button {
  24. color: $blue-grey;
  25. display: flex;
  26. align-items: center;
  27. ion-icon {
  28. font-size: 24px;
  29. }
  30. span {
  31. margin-left: 5px;
  32. font-size: 0.9rem;
  33. font-size: 14px;
  34. }
  35. }
  36. header {
  37. flex-grow: 1;
  38. padding: 0 10px;
  39. font-size: 16px;
  40. color: darken($blue-grey, 30%);
  41. font-weight: 500;
  42. text-align: left;
  43. white-space: nowrap;
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. span {
  47. font-weight: 500;
  48. color: $blue-grey;
  49. font-size: 12px;
  50. }
  51. }
  52. }
  53. ion-searchbar {
  54. margin: 10px 0;
  55. }
  56. ion-list {
  57. margin-bottom: 60px;
  58. ion-item {
  59. --padding-start: 5%;
  60. --padding-end: 5%;
  61. }
  62. ion-button {
  63. margin: 0;
  64. --border-width: 2px;
  65. --border-radius: 5px;
  66. width: 40px;
  67. height: 40px;
  68. transform: scale(0.9);
  69. &.active {
  70. --background: #01b868;
  71. --color: white;
  72. --border-color: #00ad62;
  73. ion-icon {
  74. font-size: 30px;
  75. &:nth-child(2) {
  76. display: block;
  77. }
  78. &:nth-child(1) {
  79. display: none;
  80. }
  81. }
  82. }
  83. ion-icon {
  84. font-size: 20px;
  85. &:nth-child(2) {
  86. display: none;
  87. }
  88. }
  89. }
  90. }
  91. .confirm-button {
  92. position: fixed;
  93. bottom: 0;
  94. left: 0;
  95. --color: white;
  96. margin: 0;
  97. width: 100%;
  98. height: 50px;
  99. --background: #01b868;
  100. }