We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72df05e commit d3bc6e1Copy full SHA for d3bc6e1
1 file changed
public/404.html
@@ -25,6 +25,8 @@
25
26
document.head.append(refresh)
27
}
28
+
29
+ document.getElementById('main').classList.toggle('invisible')
30
</script>
31
32
<style>
@@ -47,6 +49,11 @@
47
49
width: 100%;
48
50
height: 100vh;
51
text-align: center;
52
+ transition: all 0.2s;
53
+ }
54
55
+ .invisible {
56
+ opacity: 100%;
57
58
59
.fof {
@@ -74,7 +81,7 @@
74
81
75
82
76
83
<body>
77
-<div id="main">
84
+<div id="main" class="invisible">
78
85
<div class="fof">
79
86
<h1>Error 404</h1>
80
87
<p>Parece que essa página foi perdida.</p>
0 commit comments