styles.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. .configureMacroDiv {
  2. display: grid;
  3. grid-template-rows: 1fr;
  4. min-width: 12rem;
  5. }
  6. .configureMacroDivItem {
  7. display: flex;
  8. align-content: center;
  9. justify-content: space-between;
  10. margin-bottom: 10px;
  11. }
  12. .configureMacroDivItemButton {
  13. display: flex;
  14. align-content: center;
  15. justify-content: center;
  16. margin-bottom: 10px;
  17. }
  18. .macroContainer {
  19. display: grid;
  20. grid-template-rows: repeat(auto-fill, 120px);
  21. grid-gap: 40px;
  22. overflow-y: auto;
  23. max-height: 30em;
  24. padding: 2em;
  25. }
  26. /* Mobile */
  27. @media screen and (max-width: 540px){
  28. .macroContainer1 {
  29. grid-template-columns: repeat(1, 1fr);
  30. }
  31. .macroContainer2 {
  32. grid-template-columns: repeat(1, 1fr);
  33. }
  34. .macroContainer3 {
  35. grid-template-columns: repeat(1, 1fr);
  36. }
  37. .wideInputPromptInputEl {
  38. width: 20rem;
  39. max-width: 100%;
  40. height: 3rem;
  41. }
  42. }
  43. /* Tablet */
  44. @media screen and (max-width: 540px) and (max-width: 780px) {
  45. .macroContainer1 {
  46. grid-template-columns: repeat(1, 1fr);
  47. }
  48. .macroContainer2 {
  49. grid-template-columns: repeat(2, 1fr);
  50. }
  51. .macroContainer3 {
  52. grid-template-columns: repeat(2, 1fr);
  53. }
  54. .wideInputPromptInputEl {
  55. width: 30rem;
  56. max-width: 100%;
  57. height: 20rem;
  58. }
  59. }
  60. /* Everything else */
  61. @media screen and (min-width: 781px){
  62. .macroContainer1 {
  63. grid-template-columns: repeat(1, 1fr);
  64. }
  65. .macroContainer2 {
  66. grid-template-columns: repeat(2, 1fr);
  67. }
  68. .macroContainer3 {
  69. grid-template-columns: repeat(3, 1fr);
  70. }
  71. .wideInputPromptInputEl {
  72. width: 40rem;
  73. max-width: 100%;
  74. height: 20rem;
  75. }
  76. }
  77. .addMacroBarContainer {
  78. display: flex;
  79. align-content: center;
  80. justify-content: space-around;
  81. margin-top: 20px;
  82. }
  83. .captureToActiveFileContainer {
  84. display: flex;
  85. align-content: center;
  86. justify-content: space-between;
  87. margin-bottom: 10px;
  88. }
  89. .choiceNameHeader {
  90. text-align: center;
  91. }
  92. .choiceNameHeader:hover {
  93. cursor: pointer;
  94. }
  95. .folderInputContainer {
  96. display: flex;
  97. align-content: center;
  98. justify-content: space-between;
  99. margin-bottom: 8px;
  100. gap: 4px;
  101. }
  102. .selectMacroDropdownContainer {
  103. display: flex;
  104. align-content: center;
  105. justify-content: center;
  106. }
  107. .quickAddModal .modal {
  108. min-width: 35%;
  109. overflow-y: auto;
  110. max-height: 70%;
  111. }
  112. .checkboxRowContainer {
  113. display: grid;
  114. grid-template-rows: auto;
  115. align-content: center;
  116. }
  117. .checkboxRow {
  118. display: flex;
  119. justify-content: space-between;
  120. align-content: center;
  121. }
  122. .checkboxRow .checkbox-container {
  123. flex-shrink: 0;
  124. }
  125. .checkboxRow span {
  126. font-size: 16px;
  127. word-break: break-all;
  128. }
  129. .submitButtonContainer {
  130. display: flex;
  131. align-content: center;
  132. justify-content: center;
  133. }
  134. .chooseFolderWhenCreatingNoteContainer {
  135. display: flex;
  136. align-content: center;
  137. justify-content: space-between;
  138. margin-bottom: 10px;
  139. }
  140. .clickable:hover {
  141. cursor: pointer;
  142. }
  143. .quickAddCommandListItem {
  144. display: flex;
  145. flex: 1 1 auto;
  146. align-items: center;
  147. justify-content: space-between;
  148. }
  149. .quickCommandContainer {
  150. display: flex;
  151. justify-content: flex-end;
  152. align-content: center;
  153. margin-bottom: 1em;
  154. }
  155. .yesNoPromptButtonContainer {
  156. display: flex;
  157. align-items: center;
  158. justify-content: space-around;
  159. margin-top: 2rem;
  160. }
  161. .yesNoPromptParagraph {
  162. text-align: center;
  163. }
  164. .qaFileSuggestionItem {
  165. display: flex;
  166. flex-direction: column;
  167. width: 100%;
  168. }
  169. .qaFileSuggestionItem .suggestion-main-text {
  170. font-weight: bold;
  171. }
  172. .qaFileSuggestionItem .suggestion-sub-text {
  173. font-style: italic;
  174. }