| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- $storage-warn-container-color: dynamic(#458fd2);
- $unsend-sale-container-color: dynamic(#4caf50);
- $unaudit-sale-container-color: dynamic(#9c27b0);
- $unaudit-purc-container-color: dynamic(#e91e63);
- .info-card-item {
- text-align: center;
- background: $lightest-color ;
- padding: 15px 10px !important;
- font-size: 24px;
- &.info-card-large-wrap {
- h2 {
- font-size: 36px;
- line-height: 36px;
- }
- span.x-fa {
- height: 60px;
- width: 60px;
- border-radius: 36px;
- color: $lightest-color;
- font-size: 30px;
- line-height: 60px;
- margin: 15px 0;
- &.fa-exclamation-triangle {
- background-color: $storage-warn-container-color;
- }
- &.fa-shopping-cart {
- background-color: $unsend-sale-container-color;
- }
- &.fa-check {
- background-color: $unaudit-sale-container-color;
- }
- &.fa-calendar-check-o {
- background-color: $unaudit-purc-container-color;
- }
- }
- .infodiv {
- font-size: 14px;
- line-height: 16px;
- margin-top: 15px;
- }
- }
- &.cornflower-blue:before {
- background: $storage-warn-container-color;
- }
- &.green:before {
- background: $unsend-sale-container-color;
- }
- &.magenta:before {
- background: $unaudit-sale-container-color;
- }
- &.orange:before {
- background: $unaudit-purc-container-color;
- }
- h2 {
- font-size: 30px;
- font-weight: normal;
- margin: 0;
- margin: 0;
- line-height: 32px;
- }
- div {
- line-height: 24px;
- }
- span {
- font-size: 24px;
- line-height: 24px;
- }
- }
- .info-card-item:before {
- width: 100%;
- position: absolute;
- height: 3px;
- content: "";
- top: 0;
- left: 0
- }
|