Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .total {
- margin-top: 60px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .total__item {
- width: calc(100% / 3);
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin: 30px;
- background-color: red;
- border-radius: 10px;
- padding: 30px 80px;
- }
- .total__item-icon {
- font-size: 70px;
- margin-right: 30px;
- }
- .total__item-content {
- font-size: 20px;
- font-weight: bold;
- }
- .total__item-content-number {
- font-size: 16px;
- font-weight: lighter;
- color: #ccc;
- }
- .table {
- padding: 60px;
- }
- .table_row {
- grid-template-columns: repeat(3, 1fr) repeat(1, 2fr) 0.3fr;
- position: relative;
- text-align: center;
- }
- .modal {
- position: absolute;
- inset: 0 0 0 0;
- background-color: rgba(0, 0, 0, 0.5);
- z-index: 1000;
- display: flex;
- justify-content: center;
- align-items: center;
- transform-origin: center;
- visibility: hidden;
- opacity: 0;
- transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
- }
- .modal__content {
- width: 700px;
- height: 500px;
- background-color: #fff;
- border-radius: 10px;
- padding: 30px;
- font-size: 16px;
- position: relative;
- transform: scale(0%);
- transition: transform 0.5s ease-in-out;
- }
- .modal__content--item {
- /* display: inline-block; */
- width: 48%;
- display: -webkit-box;
- -webkit-line-clamp: 5;
- -webkit-box-orient: vertical;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-word;
- line-height: 32px;
- }
- .driver-img-container {
- position: absolute;
- top: 0;
- right: 0;
- margin-right: 30px;
- }
- .driver-img {
- width: 100%;
- height: 250px;
- }
- .driver-img img {
- width: 100%;
- height: 100%;
- object-fit: contain;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement