Skip to content

Commit bf30cad

Browse files
committed
feat: update color for 404 page
1 parent 5594f82 commit bf30cad

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

layouts/404.html

+20-4
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,9 @@ <h1 class="text">Oops. The page you're looking for doesn't exist.</h1>
230230
margin-top: 4rem;
231231
padding: 1.2rem 3rem;
232232
color: white;
233-
color: #01ac88;
233+
color: #9dd5c0;
234234
/* background-color: #04cba0; */
235-
border: #01ac88;
235+
border: #9dd5c0;
236236
border-width: 2px;
237237
border-style: solid;
238238
transition: all 0.15s ease-in-out
@@ -242,7 +242,7 @@ <h1 class="text">Oops. The page you're looking for doesn't exist.</h1>
242242

243243
.button:hover {
244244
color: white;
245-
background-color: #01ac88;
245+
background-color: #9dd5c0;
246246
font-weight: bold;
247247
}
248248

@@ -258,7 +258,23 @@ <h1 class="text">Oops. The page you're looking for doesn't exist.</h1>
258258
}
259259

260260
.byLink {
261-
color: #04cba0;
261+
color: #9dd5c0;
262+
}
263+
264+
/* custom ::selection */
265+
::selection {
266+
background: #9dd5c0;
267+
color: #fff;
268+
}
269+
270+
::-moz-selection {
271+
background: #9dd5c0;
272+
color: #fff;
273+
}
274+
275+
::-webkit-selection {
276+
background: #9dd5c0;
277+
color: #fff;
262278
}
263279
</style>
264280
</body>

0 commit comments

Comments
 (0)