mission-context.component.scss 3.74 KB
Newer Older
Romain DELEAU's avatar
Romain DELEAU committed
1
.piece {
2
    --piece-background-color: #eac19b;
Romain DELEAU's avatar
Romain DELEAU committed
3 4 5 6 7 8

    width: 400px;
    height: 800px;
    position: relative;
    background-color: var(--piece-background-color);

Romain DELEAU's avatar
Romain DELEAU committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
    &-menu {
        position: absolute;
        width: 150px;
        height: 50px;
        background-color: #f7f7f7;
        z-index: -1;
        top: -51px;
        left: 50%;
        transform: translateX(-50%);
        transition: transform 0.5s ease;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border: solid black 1px;
        display: flex;
        padding: 15px 20px 15px 20px;
        justify-content: space-around;
25

Romain DELEAU's avatar
Romain DELEAU committed
26 27 28 29
        mat-icon {
            cursor: pointer;
            transform: scale(1.1);
        }
30

Romain DELEAU's avatar
Romain DELEAU committed
31 32 33 34
        mat-icon:hover {
            opacity: 0.75;
        }
    }
35

Romain DELEAU's avatar
Romain DELEAU committed
36 37 38
    &-menu.show {
        transform: translateX(-50%) translateY(0);
    }
39

Romain DELEAU's avatar
Romain DELEAU committed
40 41 42 43
    &-menu.hide {
        transform: translateX(-50%) translateY(100%);
    }

Romain DELEAU's avatar
Romain DELEAU committed
44 45 46 47 48
    &-attach {
        z-index: 1;
        border-top: solid black 1px;
        border-right: solid black 1px;
        border-bottom: solid black 1px;
49

Romain DELEAU's avatar
Romain DELEAU committed
50 51 52 53 54 55 56 57 58
        &-right {
            position: absolute;
            width: 20px;
            height: 60px;
            background-color: var(--piece-background-color);
            top: 25%;
            right: -20px;
            transform: translateY(-50%);
        }
59

Romain DELEAU's avatar
Romain DELEAU committed
60 61 62 63 64 65 66 67 68 69
        &-left {
            &-top {
                position: absolute;
                width: 20px;
                height: 60px;
                background-color: var(--background-color);
                top: 25%;
                left: -0px;
                transform: translateY(-50%);
            }
70

Romain DELEAU's avatar
Romain DELEAU committed
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
            &-bottom {
                position: absolute;
                width: 20px;
                height: 60px;
                background-color: var(--background-color);
                top: 75%;
                left: 0px;
                transform: translateY(-50%);
            }
        }
    }

    &-form {
        height: 100%;
        padding: 0px 10px 0px 35px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        z-index: 2;
91

Romain DELEAU's avatar
Romain DELEAU committed
92 93 94 95 96
        label {
            font-size: 20px;
            font-weight: lighter;
            margin-top: 10px;
            margin-bottom: 5px;
97 98
        }

Romain DELEAU's avatar
Romain DELEAU committed
99 100 101 102 103 104
        input {
            height: 40px;
            border-radius: 10px;
            border: none;
            padding: 5px 10px 5px 10px;
        }
105

Romain DELEAU's avatar
Romain DELEAU committed
106 107 108 109 110 111 112
        textarea {
            border-radius: 20px;
            padding: 10px;
            border: none;
            resize: none;
            flex-grow: 1;
        }
113

Romain DELEAU's avatar
Romain DELEAU committed
114 115 116
        &-title {
            margin-top: 20px;
            font-size: 25px;
117
            font-family: 'Glacial Indifference Bold';
Romain DELEAU's avatar
Romain DELEAU committed
118
        }
119

Romain DELEAU's avatar
Romain DELEAU committed
120 121 122 123 124
        &-duration {
            display: flex;
            flex-direction: column;
            margin-top: 10px;
        }
125 126

        &-intrigue {
127
            height: 35%;
Romain DELEAU's avatar
Romain DELEAU committed
128 129 130
            margin-top: 10px;
            display: flex;
            flex-direction: column;
131

132 133 134 135 136 137
            textarea {
                background-image: url("../../../assets/background-images/contexte.png");
                background-position: center;
                background-repeat: no-repeat;
                background-size: 30%;
            }
Romain DELEAU's avatar
Romain DELEAU committed
138
        }
139

140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
        &-communication {
            display: flex;
            flex-direction: column;
            height: 20%;

            textarea {
                background-image: url("../../../assets/background-images/com.png");
                background-position: center;
                background-repeat: no-repeat;
                background-size: 30%;
            }
        }

        &-divers {
            display: flex;
            flex-direction: column;
            height: 20%;
        }
Romain DELEAU's avatar
Romain DELEAU committed
158 159
    }
}