OpenVisor-Website/src/components/footer.vue

121 lines
2.6 KiB
Vue
Raw Normal View History

2024-04-26 21:56:56 +02:00
<template>
<footer class="footer-footer" v-bind:class="rootClassName">
<section class="footer-dotted-line"></section>
<div class="footer-category">
<div class="footer-header">
<span class="footer-text footer-header">{{ Text }}</span>
</div>
<div class="footer-links">
<span class="footer-text1 footer-link">{{ Text1 }}</span>
</div>
</div>
<section class="footer-dotted-line1"></section>
</footer>
</template>
<script>
export default {
name: 'Footer',
props: {
Text: {
type: String,
default: 'Kontakt',
},
rootClassName: String,
Text1: {
type: String,
default: 'hermann@mitoffenemvisier.com',
},
},
}
</script>
<style scoped>
.footer-footer {
gap: var(--dl-space-space-fiveunits);
flex: 1;
width: 100%;
display: flex;
position: relative;
align-items: center;
padding-top: 120px;
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;
padding-bottom: var(--dl-space-space-threeunits);
justify-content: center;
}
.footer-dotted-line {
gap: var(--dl-space-space-fiveunits);
flex: 1;
width: 100%;
display: flex;
align-items: center;
border-color: rgba(200,200,200,0.8);
border-style: dashed;
border-width: 0px;
flex-direction: column;
justify-content: center;
border-top-width: 3px;
}
.footer-category {
gap: var(--dl-space-space-unit);
display: flex;
align-items: center;
border-width: 0px;
flex-direction: column;
justify-content: center;
border-top-width: 0px;
}
.footer-header {
gap: var(--dl-space-space-unit);
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
}
.footer-text {
font-size: 36px;
text-transform: uppercase;
}
.footer-links {
gap: var(--dl-space-space-unit);
width: 100%;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: flex-start;
}
.footer-text1 {
color: #ffff00;
font-size: 16px;
font-style: normal;
font-weight: 300;
text-decoration: underline;
}
.footer-dotted-line1 {
gap: var(--dl-space-space-fiveunits);
flex: 1;
width: 100%;
display: flex;
align-items: center;
border-color: rgba(200,200,200,0.8);
border-style: dashed;
border-width: 0px;
flex-direction: column;
justify-content: center;
border-top-width: 3px;
}
@media(max-width: 991px) {
.footer-dotted-line {
display: none;
}
.footer-dotted-line1 {
display: none;
}
}
</style>