kotlet.tv Ads.txt file
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Przerwa techniczna</title>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: "Roboto", sans-serif; /* Zastosowanie Roboto */
/* font-family: Arial, sans-serif; */
background-color: white;
color: #333;
/* margin: 200px 40px 40px 40px; */
margin: 20px;
/* text-align: center; */
display: flex;
justify-content: center;
background-color: #F6EAEC;
}
header {
background-color: #fafdf3;
padding: 400px 80px 60px 80px;
/* margin-bottom: 20px; */
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
max-width: 700px;
margin: auto;
background-image: url(przerwa-techniczna-backgroud-01.jpg);
background-size: cover; /* Pokrywa cały ekran bez tracenia proporcji */
background-position: top; /* Centruje grafikę na ekranie */
background-repeat: no-repeat; /* Zapobiega powtarzaniu się grafiki */
}
.content {
background-color: #f2f2f2;
padding: 26px;
/* margin-bottom: 20px; */
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
max-width: 500px;
margin: auto;
}
p {
font-size: 18px;
line-height: 1.3;
}
p:last-of-type {
text-indent: 12px; /* Wcięcie dla ostatniego paragrafu */
}
a, a:hover, a:visited {
color: darkorchid;
font-weight: 700;
}
/* Responsywność dla urządzeń mobilnych */
@media (max-width: 600px) {
body {
margin: 15px;
}
h1 {
font-size: 22px;
}
p {
font-size: 17px; /* Mniejsza czcionka na urządzeniach mobilnych */
}
header {
padding-top: 200px;
padding-left: 0px;
padding-right: 0px;
}
.content {
max-width: 80%;
}
}
</style>
</head>
<body>
<header>
<div class="content">
<h1>Przerwa techniczna</h1>
<p>
Obecnie na stronie
<strong><span class="domain"></span></strong> trwają prace
techniczne. Wracamy w nowej odsłonie za jakiś czas ♥
</p>
<p>— <span class="domain"></span></p>
</div>
</header>
<script>
const domains = document.querySelectorAll(".domain");
domains.forEach((domain) => {
domain.textContent = window.location.hostname;
});
const emailLink = document.getElementById("emailLink");
const domain = window.location.hostname;
const email = `sklep@${domain}`;
emailLink.href = `mailto:${email}`;
emailLink.textContent = email;
</script>
</body>
</html>