OpenVisor-Website/src/components/kontakt.vue

62 lines
1.1 KiB
Vue
Raw Normal View History

2024-04-26 21:56:56 +02:00
<template>
2024-04-26 21:56:56 +02:00
<footer class="kontakt-footer" v-bind:class="rootClassName">
2024-04-26 21:56:57 +02:00
<span class="kontakt-text">{{ Text }}</span>
<a href="mailto:info@openvisor.ch?subject=" class="kontakt-text1">
{{ Text1 }}
</a>
2024-04-26 21:56:56 +02:00
</footer>
</template>
<script>
export default {
2024-04-26 21:56:56 +02:00
name: 'Kontakt',
2024-04-26 21:56:56 +02:00
props: {
Text: {
type: String,
default: 'Kontakt',
},
rootClassName: String,
Text1: {
type: String,
2024-04-26 21:56:56 +02:00
default: 'info@openvisor.ch',
2024-04-26 21:56:56 +02:00
},
},
}
</script>
<style scoped>
2024-04-26 21:56:56 +02:00
.kontakt-footer {
2024-04-26 21:56:57 +02:00
gap: var(--dl-space-space-unit);
2024-04-26 21:56:56 +02:00
flex: 1;
width: 100%;
display: flex;
position: relative;
2024-04-26 21:56:57 +02:00
margin-top: 10%;
2024-04-26 21:56:56 +02:00
align-items: center;
padding-left: var(--dl-space-space-oneandhalfunits);
2024-04-26 21:56:57 +02:00
margin-bottom: 10%;
2024-04-26 21:56:56 +02:00
padding-right: var(--dl-space-space-oneandhalfunits);
flex-direction: column;
justify-content: center;
}
2024-04-26 21:56:56 +02:00
.kontakt-text {
2024-04-26 21:56:57 +02:00
color: #ffffff;
2024-04-26 21:56:56 +02:00
font-size: 36px;
2024-04-26 21:56:57 +02:00
text-align: center;
2024-04-26 21:56:56 +02:00
text-transform: uppercase;
}
2024-04-26 21:56:56 +02:00
.kontakt-text1 {
2024-04-26 21:56:56 +02:00
color: #ffff00;
2024-04-26 21:56:56 +02:00
font-size: 18px;
2024-04-26 21:56:56 +02:00
align-self: center;
2024-04-26 21:56:56 +02:00
font-style: normal;
font-weight: 300;
text-decoration: underline;
}
2024-04-26 21:56:56 +02:00
2024-04-26 21:56:56 +02:00
</style>