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
All checks were successful
Static / build (push) Successful in 13s
This commit is contained in:
parent
bc9fd91238
commit
eda3e6ff78
2 changed files with 6 additions and 5 deletions
|
@ -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>
|
||||
|
|
|
@ -398,3 +398,7 @@ a {
|
|||
font-size: 10px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
#load-overlay {
|
||||
display: none;
|
||||
}
|
Loading…
Add table
Reference in a new issue