base.html 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="robots" content="noindex,nofollow" />
  6. <style>
  7. /* Copyright (c) 2010, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.com/yui/license.html */
  8. html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}
  9. html { background: #eee; padding: 10px }
  10. img { border: 0; }
  11. #sf-resetcontent { width:970px; margin:0 auto; }
  12. .sf-reset { font: 11px Verdana, Arial, sans-serif; color: #333 }
  13. .sf-reset .clear { clear:both; height:0; font-size:0; line-height:0; }
  14. .sf-reset .clear_fix:after { display:block; height:0; clear:both; visibility:hidden; }
  15. .sf-reset .clear_fix { display:inline-block; }
  16. .sf-reset * html .clear_fix { height:1%; }
  17. .sf-reset .clear_fix { display:block; }
  18. .sf-reset, .sf-reset .block { margin: auto }
  19. .sf-reset abbr { border-bottom: 1px dotted #000; cursor: help; }
  20. .sf-reset p { font-size:14px; line-height:20px; color:#868686; padding-bottom:20px }
  21. .sf-reset strong { font-weight:bold; }
  22. .sf-reset a { color:#6c6159; cursor: default; }
  23. .sf-reset a img { border:none; }
  24. .sf-reset a:hover { text-decoration:underline; }
  25. .sf-reset em { font-style:italic; }
  26. .sf-reset h1, .sf-reset h2 { font: 20px Georgia, "Times New Roman", Times, serif }
  27. .sf-reset .exception_counter { background-color: #fff; color: #333; padding: 6px; float: left; margin-right: 10px; float: left; display: block; }
  28. .sf-reset .exception_title { margin-left: 3em; margin-bottom: 0.7em; display: block; }
  29. .sf-reset .exception_message { margin-left: 3em; display: block; }
  30. .sf-reset .traces li { font-size:12px; padding: 2px 4px; list-style-type:decimal; margin-left:20px; }
  31. .sf-reset .block { background-color:#FFFFFF; padding:10px 28px; margin-bottom:20px;
  32. -webkit-border-bottom-right-radius: 16px;
  33. -webkit-border-bottom-left-radius: 16px;
  34. -moz-border-radius-bottomright: 16px;
  35. -moz-border-radius-bottomleft: 16px;
  36. border-bottom-right-radius: 16px;
  37. border-bottom-left-radius: 16px;
  38. border-bottom:1px solid #ccc;
  39. border-right:1px solid #ccc;
  40. border-left:1px solid #ccc;
  41. }
  42. .sf-reset .block_exception { background-color:#ddd; color: #333; padding:20px;
  43. -webkit-border-top-left-radius: 16px;
  44. -webkit-border-top-right-radius: 16px;
  45. -moz-border-radius-topleft: 16px;
  46. -moz-border-radius-topright: 16px;
  47. border-top-left-radius: 16px;
  48. border-top-right-radius: 16px;
  49. border-top:1px solid #ccc;
  50. border-right:1px solid #ccc;
  51. border-left:1px solid #ccc;
  52. overflow: hidden;
  53. word-wrap: break-word;
  54. }
  55. .sf-reset a { background:none; color:#868686; text-decoration:none; }
  56. .sf-reset a:hover { background:none; color:#313131; text-decoration:underline; }
  57. .sf-reset ol { padding: 10px 0; }
  58. .sf-reset h1 { background-color:#FFFFFF; padding: 15px 28px; margin-bottom: 20px;
  59. -webkit-border-radius: 10px;
  60. -moz-border-radius: 10px;
  61. border-radius: 10px;
  62. border: 1px solid #ccc;
  63. }
  64. </style>
  65. </head>
  66. <body>
  67. <div id="sf-resetcontent" class="sf-reset">
  68. <h1>Sorry, the page you are looking for could not be found.</h1>
  69. </div>
  70. </body>
  71. </html>