Skip to content

Instantly share code, notes, and snippets.

@kmgdevelopment
Created November 7, 2012 19:28
Show Gist options
  • Save kmgdevelopment/4033821 to your computer and use it in GitHub Desktop.
Save kmgdevelopment/4033821 to your computer and use it in GitHub Desktop.
EE Error Template
<html>
<head>
<title>Error</title>
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<style type="text/css">
body {
background-color: #ffffff;
margin: 50px;
font-family: 'Lucida Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 12px;
color: #444;
background-color: #fff;
}
a {
text-decoration: underline;
color: #850D70;
}
a:hover {
color: #6E0B5C;
}
#content {
border: 5px solid #c8e7f1;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
padding: 15px !important;
margin-bottom: 20px;
background: #ebf6fa; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 0%, #c8e7f1 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#c8e7f1)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 0%,#c8e7f1 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 0%,#c8e7f1 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ffffff 0%,#c8e7f1 100%); /* IE10+ */
background: linear-gradient(to bottom, #ffffff 0%,#c8e7f1 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#c8e7f1',GradientType=0 ); /* IE6-9 */
}
h1 {
font-weight: bold; text-rendering: optimizeLegibility; line-height: 1.1; margin-bottom: 12px; margin-top: 12px; text-transform: uppercase; font-size: 16px;
}
p {
font-weight: normal;
margin-top: 12px;
margin-bottom: 14px;
}
ul {
margin-bottom: 16px;
}
li {
list-style: disc;
margin-top: 8px;
margin-bottom: 8px;
}
</style>
</head>
<body>
<div id="content">
<h1>The following errors were encountered</h1>
<ul><li>mbr_account_not_active</li>
</ul>
<p><a href='JavaScript:history.go(-1)'>Return to Previous Page</a></p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment