ali2210/WizDwarf

View on GitHub
css/transact.css

Summary

Maintainability
Test Coverage
.logo {
    display: flex;
    width: 30%;
    position: relative;
}

.main-dashboard-div {
    display: flex;
    justify-content: flex-start;
    margin-top: 25px;
}

.div-meta {
    display: flex;
    position: relative;
    margin-left: 2%;
    background: padding-box;
    border: 2px whitesmoke dashed;
    border-radius: 10px;
    font-size: 15.5px;
}

.fa-check-circle {
    color: green;
    visibility: hidden;
    margin-right: 2px;
    margin-top: 2px;
}

.fa-ban {
    color: red;
    visibility: visible;
    margin-right: 2px;
    margin-top: 2px;
}

.connect {
    visibility: hidden;
    margin-left: 2px;
    color: green;
}

.disconnect {
    visibility: visible;
    margin-left: 2px;
    color: red;
}

body {
    background-color: #f0f0f0;
    font-family: "Quicksand", sans-serif;
}

main {
    padding: 32px;
}

section {
    display: flex;
    justify-content: center;
}

.card {
    display: inline-block;
    background-color: #ffffff;
    margin: 24px;
    padding: 16px;
    width: 312px;
    min-width: 288px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    transition: 0.4s;
}

.card:hover {
    box-shadow: none;
}

.card-image {
    transform: translateX(0px);
    box-shadow: none;
}

.card-image {
    width: 100%;
    height: 256px;
    border-radius: 8px;
    position: relative;
    transform: translateX(-32px);
    box-shadow: 16px 4px 24px 0 rgba(0, 0, 0, 0.2);
    transition: 0.4s;
    object-fit: cover;
}

.card-body {
    padding: 8px;
}

.card-title {
    font-size: 32px;
    margin: 12px 0;
    transition: 0.4s;
    font-family: "DM Serif Display", serif;
    font-weight: 600;
    letter-spacing: 2px;
}

.card-content {
    font-size: 14px;
    margin-bottom: 8px;
}

.button-back {
    display: flex;
    position: relative;
    justify-content: flex-end;
}

.slide-right {
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    display: inline;
    position: relative;
    left: 120px;
}

.slide-left {
    -webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    display: inline;
    position: relative;
    left: 80px;
}


/* ----------------------------------------------
 * Generated by Animista on 2021-3-4 12:15:15
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */


/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */

@-webkit-keyframes slide-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}

@keyframes slide-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}


/* ----------------------------------------------
 * Generated by Animista on 2021-3-4 12:18:31
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */


/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */

@-webkit-keyframes slide-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

.service-details {
    display: flex;
    position: relative;
    justify-content: space-around;
}

.checkout {
    display: inline-flex;
    position: relative;
    justify-content: center;
    left: 10px;
    color: darkviolet;
}

.fa-check-square {
    position: inherit;
    color: green;
}

.fa-times {
    position: inherit;
    color: red;
}

.fa-heart,
.fa-heartbeat {
    visibility: hidden;
}

.container-alert {
    margin: 50px;
    position: relative;
    width: 80%;
    left: 40px;
}

.alert-danger {
    border-radius: 20px;
    color: red;
    visibility: visible;
}

.alert-success {
    border-radius: 20px;
    color: green;
    visibility: visible;
}

.span-message {
    position: inherit;
    display: inherit;
    margin-top: 30px;
}

#danger {
    margin-left: 90%;
    border-radius: 10px;
    margin-bottom: 50px;
}