2023-04-16 20:12:24 +03:00
|
|
|
<template>
|
2023-06-24 18:48:18 +03:00
|
|
|
<div class="header">
|
|
|
|
<h1>
|
|
|
|
<slot></slot>
|
|
|
|
</h1>
|
|
|
|
</div>
|
2023-04-16 20:12:24 +03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-06-24 18:48:18 +03:00
|
|
|
export default {}
|
2023-04-16 20:12:24 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
div {
|
2023-06-24 18:48:18 +03:00
|
|
|
background: linear-gradient(rgba(3, 3, 3, 0.706), rgba(22, 22, 22, 0.808)),
|
|
|
|
url("https://www.sketchappsources.com/resources/source-image/tv-glitch-sureshmurali29.png");
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2023-04-16 20:12:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2023-06-24 18:48:18 +03:00
|
|
|
font-weight: 900;
|
|
|
|
font-size: 7.5vw;
|
|
|
|
padding: 150px;
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
|
|
|
text-shadow: 3px 4px 7px rgba(81, 67, 21, 0.8);
|
|
|
|
text-size-adjust: 80%;
|
2023-04-16 20:12:24 +03:00
|
|
|
}
|
2023-06-24 18:48:18 +03:00
|
|
|
</style>
|