summaryrefslogtreecommitdiff
path: root/themes/okcards/templates/404.liquid
blob: 87f534235678b2436d205c00f02580de15715667 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
  <head>
    <title>404</title>
    <style type="text/css">
      html, body {
        margin: 0;
        padding: 0;
        font-family: "Helvetica", sans-serif;
        background-image: url('http://okfoc.us/assets/images/photocopy.png');
        background-position: bottom center;
        background-repeat: repeat;
        background-attachment: scroll;
        height: 100%;
        font-size: 1.75em;
        font-weight: bold;
        color: #FFFFFF;
      }

      a {
        color: #8888FF;
        text-decoration: none;
      }

      a:hover {
        border-bottom: 3px solid #8888FF;
      }

      a:visited {
        color: #8888FF;
      }

      .message {
        width: 700px;
        padding: 1em 1em 1em 1em;
        background-color: #0000FF;
        margin: 0 auto;
        margin-top: 1em;
      }

      .message p:first-child {
        margin-top: 0;
      }
    </style>
  </head>
  <body>
    <div class="message">
      <p>¯\_(ツ)_/¯</p>
      <p>We couldn't find that page.</p>
      <p>Sure you have the right URL?</p>
      <a href="javascript:history.back()">Back</a>
    </div>
  </body>
</html>