OpenVisor-Website/src/components/kontakt.vue

86 lines
1.7 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">
<div class="kontakt-category">
<div class="kontakt-header">
<span class="kontakt-text footer-header">{{ Text }}</span>
2024-04-26 21:56:56 +02:00
</div>
2024-04-26 21:56:56 +02:00
<a
href="mailto:info@openvisor.ch?subject="
2024-04-26 21:56:56 +02:00
class="kontakt-text1 footer-link"
2024-04-26 21:56:56 +02:00
>
{{ Text1 }}
</a>
2024-04-26 21:56:56 +02:00
</div>
</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:56 +02:00
gap: var(--dl-space-space-fiveunits);
flex: 1;
width: 100%;
display: flex;
position: relative;
align-items: center;
2024-04-26 21:56:56 +02:00
padding-top: var(--dl-space-space-threeunits);
2024-04-26 21:56:56 +02:00
border-color: var(--dl-color-gray-black);
border-width: 0px;
padding-left: var(--dl-space-space-oneandhalfunits);
padding-right: var(--dl-space-space-oneandhalfunits);
flex-direction: column;
2024-04-26 21:56:56 +02:00
padding-bottom: var(--dl-space-space-sixunits);
2024-04-26 21:56:56 +02:00
justify-content: center;
}
2024-04-26 21:56:56 +02:00
.kontakt-category {
2024-04-26 21:56:56 +02:00
gap: var(--dl-space-space-unit);
display: flex;
align-items: center;
border-width: 0px;
flex-direction: column;
justify-content: center;
border-top-width: 0px;
}
2024-04-26 21:56:56 +02:00
.kontakt-header {
2024-04-26 21:56:56 +02:00
gap: var(--dl-space-space-unit);
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
}
2024-04-26 21:56:56 +02:00
.kontakt-text {
2024-04-26 21:56:56 +02:00
font-size: 36px;
2024-04-26 21:56:56 +02:00
margin-bottom: var(--dl-space-space-unit);
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>