Fix for the repeating background in assets.html #256
1 changed files with 12 additions and 1 deletions
|
@ -9,10 +9,20 @@
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
background-image: linear-gradient(#2b2b2b, #171717) !important;
|
|
||||||
margin-left: 12px;
|
margin-left: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bg {
|
||||||
|
background-image: linear-gradient(#2b2b2b, #171717) !important;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: -999;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
a:link { color: rgb(0, 200, 255) }
|
a:link { color: rgb(0, 200, 255) }
|
||||||
a:visited { color: rgb(130, 140, 255) }
|
a:visited { color: rgb(130, 140, 255) }
|
||||||
|
|
||||||
|
@ -38,6 +48,7 @@
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
<div class="bg"></div>
|
||||||
<h1 id="listing" style="margin: 15 0 15 0; text-decoration: underline;"></h1>
|
<h1 id="listing" style="margin: 15 0 15 0; text-decoration: underline;"></h1>
|
||||||
<div id="directories" style="margin-bottom: 20px">
|
<div id="directories" style="margin-bottom: 20px">
|
||||||
<div class="name">⏪ <a href="../">Back</a></div></div>
|
<div class="name">⏪ <a href="../">Back</a></div></div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue