Skip to content
Snippets Groups Projects
Select Git revision
  • 998820e671b19f03e80a1c3a4480d983914a8d88
  • master default protected
2 results

sco_inscr_passage.py

Blame
  • Forked from Jean-Marie Place / SCODOC_R6A06
    Source project has a limited visibility.
    HomeView.vue 857 B
    <template>
      <div class="column items-center full-width non-selectable">
        <div class="col-3" style="max-width: 450px; width: 75%">
          <img :src="src"
               style="border-radius: 50%; width: 100%; height: 100%; object-fit: cover;"
               class="full-height full-width">
        </div>
        <div class="col-6 column items-center text-h2 text-bold text-secondary" :class="$q.screen.lt.md ? 'text-h4' : 'text-h2' ">
          <span class="arial text-uppercase">{{first}}</span>
          <span class="arial text-uppercase" >{{ second }}</span>
          <span class="text-dark text-h6 text-center" >{{accent}}</span>
        </div>
      </div>
    </template>
    
    <script setup lang="ts">
    defineProps({
      first: String,
      second: String,
      accent: String,
      src: {
        type: String,
        required: true
      }
    })
    </script>
    
    <style scoped>
    .arial {
      font-family: Arial;
    }
    </style>