84 lines
1.8 KiB
HTML
84 lines
1.8 KiB
HTML
|
|
<style>
|
||
|
|
body {
|
||
|
|
background: black;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Layout */
|
||
|
|
div.noscript-layout {
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 16px;
|
||
|
|
box-sizing: border-box;
|
||
|
|
margin: auto;
|
||
|
|
padding: 16px 0;
|
||
|
|
width: 100%;
|
||
|
|
max-width: 1024px;
|
||
|
|
}
|
||
|
|
|
||
|
|
div.noscript-wrapper {
|
||
|
|
position: relative;
|
||
|
|
margin: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
main.noscript-container {
|
||
|
|
background-color: #202020;
|
||
|
|
padding: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Elements */
|
||
|
|
p.noscript-message {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
color: #f0f0f0;
|
||
|
|
font-family: monospace;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Effects */
|
||
|
|
div.noscript-corner {
|
||
|
|
position: absolute;
|
||
|
|
width: 16px;
|
||
|
|
height: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
div.noscript-corner:nth-child(1) {
|
||
|
|
top: -16px;
|
||
|
|
left: -16px;
|
||
|
|
border-top: 1px solid #606060;
|
||
|
|
border-left: 1px solid #606060;
|
||
|
|
}
|
||
|
|
|
||
|
|
div.noscript-corner:nth-child(2) {
|
||
|
|
top: -16px;
|
||
|
|
right: -16px;
|
||
|
|
border-top: 1px solid #606060;
|
||
|
|
border-right: 1px solid #606060;
|
||
|
|
}
|
||
|
|
|
||
|
|
div.noscript-corner:nth-child(3) {
|
||
|
|
bottom: -16px;
|
||
|
|
left: -16px;
|
||
|
|
border-bottom: 1px solid #606060;
|
||
|
|
border-left: 1px solid #606060;
|
||
|
|
}
|
||
|
|
|
||
|
|
div.noscript-corner:nth-child(4) {
|
||
|
|
right: -16px;
|
||
|
|
bottom: -16px;
|
||
|
|
border-right: 1px solid #606060;
|
||
|
|
border-bottom: 1px solid #606060;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
|
||
|
|
<div class="noscript-layout">
|
||
|
|
<div class="noscript-wrapper">
|
||
|
|
<div class="noscript-corner"></div>
|
||
|
|
<div class="noscript-corner"></div>
|
||
|
|
<div class="noscript-corner"></div>
|
||
|
|
<div class="noscript-corner"></div>
|
||
|
|
<main class="noscript-container">
|
||
|
|
<p class="noscript-message"><b>NOTICE:</b> JavaScript is required to view this site.</p>
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
</div>
|