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 | <template> <div class="row q-px-xl"> <div class="col-md-3 col-sm-12"> <q-img src="statics/600x600fabr.png" style="max-width: 300px; margin: 0 auto;" /> </div> <div class="col-md-9 col-sm-12"> <q-card flat class="text-grey-5 q-pa-md q-mx-lg"> <q-card-section> <div class="text-h4">What is Fabricademy?</div> </q-card-section> <q-card-section> <p class="text-h6 text-grey" >Fabricademy is a transdisciplinary course that focuses on the development of new technologies applied in the textile industry, in its broad range of applications, from the fashion industry and the upcoming wearable market.</p> </q-card-section> <q-card-section> <div class="row no-wrap"> <div class="col-auto"> <q-btn class="q-mr-md"> <q-icon left size="1em" name="fas fa-tv" />Video Archive </q-btn> </div> <div class="col-auto"> <q-btn class="text-white bg-grey-7"> <q-icon left size="1em" name="fas fa-globe" />Go to website </q-btn> </div> </div> </q-card-section> </q-card> </div> </div> </template> <script> export default { // name: 'ComponentName', data() { return {}; } }; </script> <style> </style> |