28 lines
564 B
Plaintext
28 lines
564 B
Plaintext
<div class="banner">
|
|
<p>
|
|
⚠️ Web Check is temporarily disabled due to excess demand and associated costs.
|
|
We apologize for any inconvenience and are working on a solution.
|
|
</p>
|
|
</div>
|
|
|
|
<style>
|
|
.banner {
|
|
position: relative;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
background-color: var(--primary);
|
|
color: var(--background);
|
|
padding: 0.75rem 1rem;
|
|
text-align: center;
|
|
z-index: 1000;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.banner p {
|
|
margin: 0;
|
|
font-size: 0.95rem;
|
|
line-height: 1.4;
|
|
}
|
|
</style>
|