swap preload for a blank overlay that removes itself when the css is fully loaded
All checks were successful
Static / build (push) Successful in 13s

This commit is contained in:
brooke 2024-11-11 18:10:49 -05:00
parent bc9fd91238
commit eda3e6ff78
2 changed files with 6 additions and 5 deletions

View file

@ -7,11 +7,6 @@
<title>The Mycelial Network</title>
<a rel="me" href="https://kolektiva.social/@eyess"></a>
<a rel="me" href="https://mastodon.social/@brookeee"></a>
<link rel="preload" href="style.css" as="style" />
<link rel="preload" href="simplex.js" as="script" />
<link rel="preload" href="script.js" as="script" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="./icons/red-background/favicon.ico" type="image/x-icon" />
@ -35,6 +30,8 @@
</head>
<body>
<div id="load-overlay"
style="background-color: #241917; position:absolute; top:0px; left:0px; width:100%; height:100%; z-index:2000;"></div>
<div class="center-text">
<div class="tabbed">
<input type="radio" id="tab1" name="css-tabs" checked>

View file

@ -398,3 +398,7 @@ a {
font-size: 10px;
font-weight: 400;
}
#load-overlay {
display: none;
}