Advertisement
k3NGuru

RoR error

Mar 28th, 2014
444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <title>The page you were looking for doesn't exist (404)</title>
  5.   <style>
  6.   body {
  7.     background-color: #EFEFEF;
  8.     color: #2E2F30;
  9.     text-align: center;
  10.     font-family: arial, sans-serif;
  11.   }
  12.  
  13.   div.dialog {
  14.     width: 25em;
  15.     margin: 4em auto 0 auto;
  16.     border: 1px solid #CCC;
  17.     border-right-color: #999;
  18.     border-left-color: #999;
  19.     border-bottom-color: #BBB;
  20.     border-top: #B00100 solid 4px;
  21.     border-top-left-radius: 9px;
  22.     border-top-right-radius: 9px;
  23.     background-color: white;
  24.     padding: 7px 4em 0 4em;
  25.   }
  26.  
  27.   h1 {
  28.     font-size: 100%;
  29.     color: #730E15;
  30.     line-height: 1.5em;
  31.   }
  32.  
  33.   body > p {
  34.     width: 33em;
  35.     margin: 0 auto 1em;
  36.     padding: 1em 0;
  37.     background-color: #F7F7F7;
  38.     border: 1px solid #CCC;
  39.     border-right-color: #999;
  40.     border-bottom-color: #999;
  41.     border-bottom-left-radius: 4px;
  42.     border-bottom-right-radius: 4px;
  43.     border-top-color: #DADADA;
  44.     color: #666;
  45.     box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
  46.   }
  47.   </style>
  48. </head>
  49.  
  50. <body>
  51.   <!-- This file lives in public/404.html -->
  52.   <div class="dialog">
  53.     <h1>The page you were looking for doesn't exist.</h1>
  54.     <p>You may have mistyped the address or the page may have moved.</p>
  55.   </div>
  56.   <p>If you are the application owner check the logs for more information.</p>
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement