Coded my dribbble shot: https://dribbble.com/shots/4330167-404-Page-Lost-In-Space
Animated 404 Lost in Space Page. CSS3 Keyframe animations used. All the illustrations are hand-crafted in Adobe Illustrator.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<header> | |
<h1>MEDIUM</h1> | |
<nav> | |
<a href="#">Home</a> | |
<a href="#">About</a> | |
<a href="#">Gallery</a> | |
<a href="#">Contact</a> | |
</nav> | |
</header> | |
<div class="wrapper"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="row"> | |
<div class="col-md-6 col-md-offset-3"> | |
<h1 class="page-header">Todos</h1> | |
<ul class="todo-list"> | |
<li :repeat="todo in todos"> | |
<strong :class="{todoDone: todo.done}"> | |
{{ todo.name }} |