123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- /* You can add global styles to this file, and also import other style files */
- /* Importing Bootstrap SCSS file. */
- @import 'bootstrap/scss/bootstrap';
- $dialog-position-top: 10%;
- $dialog-position-left: 20%;
- $dialog-position-right: 20%;
- @import 'node_modules/ngx-smart-modal/styles/ngx-smart-modal.scss';
- // general
- :root{
- // colors
- --primary-color: #d8ac96;
- --primary-color-light: #e8c7b5;
- --primary-color-dark: #d89777;
- --secondary-color: #efc8af;
- --secondary-color-light: #f8e1d7;
- --secondary-color-dark: #cfaa8c;
- --tertiary-color: #b9835d;
- --tertiary-color-light: #cfaa8c;
- --tertiary-color-dark: #8f5f3b;
- --quaternary-color: #84a36f;
- --quaternary-color-light: #7a9e65;
- --quaternary-color-dark: #6eae52;
- --background-color: #fff2e9;
- // shadows
- --shadow-small: 4px 4px 10px 4px rgba(0,0,0,0.2);
- --shadow-medium: 4px 4px 10px 6px rgba(0,0,0,0.2);
- --shadow-large: 4px 4px 10px 8px rgba(0,0,0,0.2);
-
-
- }
- // Info Row
- .info-container{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- border: 1px solid #8d8c8c;
- width: 10rem;
- height: 7rem;
- }
- .info-input{
- border: none;
- outline: none;
- text-align: center;
- background-color: transparent;
- width: 5rem;
- margin-top: 1rem;
- font-size: 2rem;
- font-weight: 600;
- }
- .info-input::-webkit-outer-spin-button,
- .info-input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- appearance: none;
- margin: 0;
- }
- .info-label{
- font-size: 1.25rem;
- font-weight: 600;
- text-align: center;
- padding: 0.5rem;
- }
- // details-panel
- .vertical-button-wrapper-3{
- width: 100%;
- position: absolute;
- bottom: 2rem;
- display: grid;
- grid-template-rows: 1fr 1fr 1fr;
- grid-template-columns: 1fr;
- gap: 10px;
- margin-top: 2rem;
- align-items: center;
- justify-content: center;
- }
- .vertical-button-wrapper-2{
- width: 100%;
- position: absolute;
- bottom: 2rem;
- display: grid;
- grid-template-rows: 1fr 1fr;
- grid-template-columns: 1fr;
- gap: 10px;
- margin-top: 2rem;
- align-items: center;
- justify-content: center;
- }
- .details-title{
- text-align: center;
- font-size: 2rem;
- font-weight: bold;
- margin-top: 1.5rem;
- }
- .details-heading{
- font-size: 1.5rem;
- font-weight: bold;
- margin-top: 1.5rem;
- }
- .details-subheading{
- font-size: 1.25rem;
- font-weight: bold;
- margin-top: 1.5rem;
- }
- .details-content{
- font-size: 1rem;
- margin-top: .5rem;
- font-weight: 400;
- }
- .details-name{
- font-size: 1.5rem;
- font-weight: bold;
- margin-top: 1.5rem;
- text-align:center;
- }
- .details-long-description{
- margin: 2rem 1rem;
- font-size: 1rem;
- // margin-top: 2rem;
- }
- //
- .flex-row{
- display: flex;
- flex-direction: row;
- }
- .flex-column{
- display: flex;
- flex-direction: column;
- }
- .flex-centered{
- align-items: center;
- justify-content: center;
- }
- .flex-left{
- justify-content: start;
- }
- .flex-right{
- justify-content: end;
- }
- .gap-01{
- gap: 0.1rem;
- }
- .gap-02{
- gap: 0.2rem;
- }
- .gap-03{
- gap: 0.3rem;
- }
- .gap-04{
- gap: 0.4rem;
- }
- .gap-05{
- gap: 0.5rem;
- }
- .gap-06{
- gap: 0.6rem;
- }
- .gap-07{
- gap: 0.7rem;
- }
- .gap-08{
- gap: 0.8rem;
- }
- .gap-09{
- gap: 0.9rem;
- }
- .gap-10{
- gap: 1rem;
- }
- .gap-11{
- gap: 1.1rem;
- }
- .gap-12{
- gap: 1.2rem;
- }
- .gap-13{
- gap: 1.3rem;
- }
- .gap-14{
- gap: 1.4rem;
- }
- .gap-15{
- gap: 1.5rem;
- }
- .gap-16{
- gap: 1.6rem;
- }
- .gap-17{
- gap: 1.7rem;
- }
- .gap-18{
- gap: 1.8rem;
- }
- .gap-19{
- gap: 1.9rem;
- }
- .gap-20{
- gap: 2rem;
- }
- // Drag and Drop Table
- /* Importing Bootstrap SCSS file. */
- @import 'bootstrap/scss/bootstrap';
|