Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | <template>
<div class="order-container specific-breakpoint mx-auto py-6 py-lg-5 px-3 px-sm-intermediate px-inter-0">
<div class="wrapper d-flex flex-column align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" stroke="rgb(154, 117, 63)" stroke-width="0.01" width="16" height="16"
fill="rgb(154, 117, 63)" class="bi bi-check-circle mb-3" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
<path
d="M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z"/>
</svg>
<div class="mb-4">
<p class="top-text-first text-center">Comanda a fost efectuata cu succes!</p>
<p class="top-text-second text-center">In scurt timp vei fi contactat de un operator.</p>
</div>
<div class="d-flex justify-content-between w-100 py-2 border-container">
<div class="d-flex flex-column">
<p class="label mb-0 text-start">Numar Comanda:</p>
<p class="value mb-0 text-start">REZ12600242</p>
</div>
<div class="d-flex flex-column">
<p class="label mb-0 text-end">Data Livrare:</p>
<p class="value mb-0 text-end">01.10.2021</p>
</div>
</div>
<div class="w-100 products mb-5">
<p class="name w-100 d-flex justify-content-between mt-2">1. Denumire articol Lorem Ipsum 1 <span class="price">260 Lei</span>
</p>
<p class="name w-100 d-flex justify-content-between mt-2">2. Denumire articol Lorem Ipsum 2 <span class="price">280 Lei</span>
</p>
<p class="name w-100 d-flex justify-content-between mt-2">3. Denumire articol Lorem Ipsum 3 <span class="price">300 Lei</span>
</p>
</div>
<simple-arrow-comp
class="justify-content-start w-100 py-1 py-lg-2"
:arrowSpecs="{
border: true, // if the arrow component will have a border
text: 'MERGI PE SITE', // arrow component text
color: 'rgb(154, 117, 63)', // text color
bgColor: 'transparent', // background color
to: '/', // link
arrowColor: 'golden' // arrow color
}"
></simple-arrow-comp>
</div>
</div>
</template>
<script>
import simpleArrowComp from '../components/utilities/arrow-components/simple-arrow-comp.vue';
export default {
components: {simpleArrowComp},
auth: false
}
</script>
<style lang="scss" scoped>
.order-container {
width: 30%;
}
.top-text-first {
color: rgb(154, 117, 63);
font-size: 1.4rem;
margin-bottom: 0.2rem;
}
.top-text-second {
color: rgb(0, 21, 44);
font-size: 1rem;
}
svg {
width: 5rem;
height: 5rem;
}
.label {
font-family: SoleilLight;
}
.value, .label {
color: rgb(0, 21, 44);
font-size: 1rem;
}
.border-container {
border-top: 1px solid rgb(154, 117, 63);
border-bottom: 1px solid rgb(154, 117, 63);
}
.price {
color: rgb(154, 117, 63);
font-size: 1rem;
font-family: SoleilBold;
}
.name {
font-size: 1rem;
color: #a1a1a1;
}
.products {
border-bottom: 1px solid rgb(154, 117, 63);
}
@media screen and #{$ipad-pro-portrait-breakpoint},
screen and #{$ipad-landscape-breakpoint},
screen and #{$ipad-pro-landscape-breakpoint} {
.order-container.specific-breakpoint {
padding: $spacer * 6 $spacer * 2 !important;
}
.order-container {
width: 100%;
}
.top-text-first {
font-size: 1.3rem;
margin-bottom: .7rem;
}
.top-text-second {
font-size: 1.1rem;
}
svg {
width: 5rem;
height: 5rem;
}
.value, .label {
font-size: 1.1rem;
}
.price {
font-size: 1.1rem;
}
.name {
font-size: 1.1rem;
}
}
@include media-breakpoint-down(lg) {
.order-container {
width: 100%;
}
.top-text-first {
font-size: 1.2rem;
margin-bottom: .6rem;
}
.top-text-second {
font-size: 1rem;
}
svg {
width: 4rem;
height: 4rem;
}
.value, .label {
font-size: 1rem;
}
.price {
font-size: 1rem;
}
.name {
font-size: 1rem;
}
}
@include media-breakpoint-down(sm) {
.top-text-first {
font-size: 1.1rem;
margin-bottom: .5rem;
}
.top-text-second {
font-size: .9rem;
}
svg {
width: 3.5rem;
height: 3.5rem;
}
.value, .label {
font-size: .9rem;
}
.price {
font-size: .9rem;
}
.name {
font-size: .9rem;
}
}
</style>
|