styles.scss 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. /* You can add global styles to this file, and also import other style files */
  2. /* Importing Bootstrap SCSS file. */
  3. @import 'bootstrap/scss/bootstrap';
  4. $dialog-position-top: 10%;
  5. $dialog-position-left: 20%;
  6. $dialog-position-right: 20%;
  7. @import 'node_modules/ngx-smart-modal/styles/ngx-smart-modal.scss';
  8. :root{
  9. // COLORS
  10. --primary-color: #d8ac96;
  11. --primary-color-light: #e8c7b5;
  12. --primary-color-dark: #d89777;
  13. --secondary-color: #efc8af;
  14. --secondary-color-light: #f8e1d7;
  15. --secondary-color-dark: #cfaa8c;
  16. --tertiary-color: #b9835d;
  17. --tertiary-color-light: #cfaa8c;
  18. --tertiary-color-dark: #8f5f3b;
  19. --quaternary-color: #84a36f;
  20. --quaternary-color-light: #7a9e65;
  21. --quaternary-color-dark: #6eae52;
  22. --background-color: #fff2e9;
  23. --field-background-color: #efc8af;
  24. --border-color: #8d8c8c;
  25. --border-color2: #8d8c8c;
  26. // shadows
  27. --shadow-small: 4px 4px 10px 4px rgba(0,0,0,0.2);
  28. --shadow-medium: 4px 4px 10px 6px rgba(0,0,0,0.2);
  29. --shadow-large: 4px 4px 10px 8px rgba(0,0,0,0.2);
  30. @mixin field-styling{
  31. border: solid 1px var(--border-color);
  32. background-color: var(--field-background-color);
  33. box-shadow: var(--shadow-small);
  34. border-radius: 10px;
  35. }
  36. //
  37. .responsive-small{
  38. display: none;
  39. }
  40. .responsive-large{
  41. display: block;
  42. }
  43. @media (width < 1640px) {
  44. .responsive-large {
  45. display: none;
  46. }
  47. .responsive-small {
  48. display: block;
  49. }
  50. }
  51. // Scrollbar
  52. ::-webkit-scrollbar {
  53. width: 0.5rem;
  54. margin: 0.125rem 0;
  55. }
  56. ::-webkit-scrollbar-track {
  57. background: #f1f1f1;
  58. border-radius: 10px;
  59. }
  60. ::-webkit-scrollbar-thumb {
  61. background: #888;
  62. border-radius: 10px;
  63. }
  64. ::-webkit-scrollbar-thumb:hover {
  65. background: #555;
  66. border-radius: 10px;
  67. }
  68. }
  69. // Info Row
  70. .info-container{
  71. display: flex;
  72. flex-direction: column;
  73. justify-content: space-between;
  74. align-items: center;
  75. border: solid 1px var(--border-color);
  76. background-color: var(--field-background-color);
  77. box-shadow: var(--shadow-small);
  78. border-radius: 10px;
  79. height: 7rem;
  80. @media (width > 1699px){
  81. width: 10rem;
  82. }
  83. @media (width < 1640px) {
  84. width: 7rem
  85. }
  86. }
  87. .info-input{
  88. border: none;
  89. outline: none;
  90. text-align: center;
  91. background-color: transparent;
  92. width: 5rem;
  93. margin-top: 1rem;
  94. font-size: 2rem;
  95. font-weight: 600;
  96. }
  97. .info-input::-webkit-outer-spin-button,
  98. .info-input::-webkit-inner-spin-button {
  99. -webkit-appearance: none;
  100. appearance: none;
  101. margin: 0;
  102. }
  103. .info-label{
  104. font-size: 1.25rem;
  105. font-weight: 600;
  106. text-align: center;
  107. padding: 0.5rem;
  108. }
  109. input[type="checkbox"] {
  110. height: 1.25rem;
  111. width: 1.25rem;
  112. }
  113. input[type="checkbox"]:checked {
  114. color: red;
  115. }
  116. // details-panel
  117. .vertical-button-wrapper-3{
  118. width: 100%;
  119. position: absolute;
  120. bottom: 2rem;
  121. display: grid;
  122. grid-template-rows: 1fr 1fr 1fr;
  123. grid-template-columns: 1fr;
  124. gap: 10px;
  125. margin-top: 2rem;
  126. align-items: center;
  127. justify-content: center;
  128. }
  129. .vertical-button-wrapper-2{
  130. width: 100%;
  131. position: absolute;
  132. bottom: 2rem;
  133. display: grid;
  134. grid-template-rows: 1fr 1fr;
  135. grid-template-columns: 1fr;
  136. gap: 10px;
  137. margin-top: 2rem;
  138. align-items: center;
  139. justify-content: center;
  140. }
  141. .button-wrapper-3-block{
  142. display: grid;
  143. grid-template-rows: 1fr 1fr 1fr;
  144. grid-template-columns: 1fr;
  145. gap: 10px;
  146. align-items: center;
  147. justify-content: center;
  148. margin-top: 2rem;
  149. padding-bottom: 2rem;
  150. }
  151. .button-wrapper-2-block{
  152. display: grid;
  153. grid-template-rows: 1fr 1fr;
  154. grid-template-columns: 1fr;
  155. gap: 10px;
  156. align-items: center;
  157. justify-content: center;
  158. margin-top: 2rem;
  159. padding-bottom: 2rem;
  160. }
  161. //
  162. .details-title{
  163. text-align: center;
  164. font-size: 2rem;
  165. font-weight: bold;
  166. margin-top: 1.5rem;
  167. }
  168. .details-heading{
  169. font-size: 1.5rem;
  170. font-weight: bold;
  171. margin-top: 1.5rem;
  172. }
  173. .details-subheading{
  174. font-size: 1.25rem;
  175. font-weight: bold;
  176. margin-top: 1.5rem;
  177. }
  178. .details-content{
  179. margin-top: 1.5rem;
  180. }
  181. .details-content-small{
  182. margin-top: 0.5rem;
  183. }
  184. .details-bold{
  185. font-weight: 500;
  186. }
  187. .centered{
  188. text-align: center;
  189. }
  190. .details-value-container{
  191. margin-top: 2rem;
  192. }
  193. .details-flex-row{
  194. display: flex;
  195. justify-content: space-between;
  196. align-items: center;
  197. }
  198. .top-1{
  199. margin-top: 1rem;
  200. }
  201. .top-2{
  202. margin-top: 2rem;
  203. }
  204. .top-3{
  205. margin-top: 3rem;
  206. }
  207. .details-value{
  208. width: 3.5rem;
  209. height: 3rem;
  210. font-size: 1.5rem;
  211. display: flex;
  212. justify-content: center;
  213. align-items: center;
  214. margin:auto;
  215. border-radius: 10px;
  216. background-color: white;
  217. box-shadow: var(--shadow-small);
  218. }
  219. .details-label{
  220. margin-top: 0.5rem;
  221. font-weight: 500;
  222. text-align: center;
  223. }
  224. .details-name{
  225. font-size: 1.5rem;
  226. font-weight: bold;
  227. margin-top: 1.5rem;
  228. text-align:center;
  229. }
  230. .details-long-description{
  231. margin: 2rem 1rem;
  232. font-size: 1rem;
  233. }
  234. //
  235. .flex-row{
  236. display: flex;
  237. flex-direction: row;
  238. }
  239. .flex-column{
  240. display: flex;
  241. flex-direction: column;
  242. }
  243. .flex-centered{
  244. align-items: center;
  245. justify-content: center;
  246. }
  247. .flex-left{
  248. justify-content: start;
  249. }
  250. .flex-right{
  251. justify-content: end;
  252. }
  253. .gap-01{
  254. gap: 0.1rem;
  255. }
  256. .gap-02{
  257. gap: 0.2rem;
  258. }
  259. .gap-03{
  260. gap: 0.3rem;
  261. }
  262. .gap-04{
  263. gap: 0.4rem;
  264. }
  265. .gap-05{
  266. gap: 0.5rem;
  267. }
  268. .gap-06{
  269. gap: 0.6rem;
  270. }
  271. .gap-07{
  272. gap: 0.7rem;
  273. }
  274. .gap-08{
  275. gap: 0.8rem;
  276. }
  277. .gap-09{
  278. gap: 0.9rem;
  279. }
  280. .gap-10{
  281. gap: 1rem;
  282. }
  283. .gap-11{
  284. gap: 1.1rem;
  285. }
  286. .gap-12{
  287. gap: 1.2rem;
  288. }
  289. .gap-13{
  290. gap: 1.3rem;
  291. }
  292. .gap-14{
  293. gap: 1.4rem;
  294. }
  295. .gap-15{
  296. gap: 1.5rem;
  297. }
  298. .gap-16{
  299. gap: 1.6rem;
  300. }
  301. .gap-17{
  302. gap: 1.7rem;
  303. }
  304. .gap-18{
  305. gap: 1.8rem;
  306. }
  307. .gap-19{
  308. gap: 1.9rem;
  309. }
  310. .gap-20{
  311. gap: 2rem;
  312. }
  313. // Drag and Drop Table
  314. /* Importing Bootstrap SCSS file. */
  315. @import 'bootstrap/scss/bootstrap';