166 lines
3.4 KiB
HTML
Executable File
166 lines
3.4 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Email Template</title>
|
|
<meta charset="utf-8" />
|
|
|
|
<style type="text/css">
|
|
body {
|
|
background: #fff;
|
|
color: #222;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
/* Social club css */
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#content {
|
|
position: relative;
|
|
background: #F0F0F6;
|
|
|
|
width: 95%;
|
|
left: 2.5%;
|
|
border: #222 solid 1px;
|
|
|
|
border-radius: 15px;
|
|
border-radius: 15px;
|
|
box-shadow: 4px 4px 8px rgba(0, 0 , 0, .5);
|
|
}
|
|
#content a {
|
|
color: #222;
|
|
font-style: italic;
|
|
text-decoration: underline;
|
|
}
|
|
#content a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
#header {
|
|
position: relative;
|
|
height: 40px;
|
|
background: #FCC465;
|
|
font-weight: bold;
|
|
font-size: 30px;
|
|
line-height: 35px;
|
|
|
|
border-bottom: solid 1px #222;
|
|
border-top-left-radius: 15px;
|
|
border-top-right-radius: 15px;
|
|
|
|
padding: 5px;
|
|
margin: 0;
|
|
}
|
|
|
|
#main {
|
|
text-align: justify;
|
|
min-height: 100px;
|
|
padding: 5px;
|
|
margin: 0;
|
|
}
|
|
|
|
#footer {
|
|
height: 25px;
|
|
position: relative;
|
|
opacity: 0.9;
|
|
background: #8c8c8c;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
|
|
border-top: solid 1px #222;
|
|
border-bottom-left-radius: 15px;
|
|
border-bottom-right-radius: 15px;
|
|
|
|
padding: 5px;
|
|
margin: 0;
|
|
}
|
|
#footer a {
|
|
font-style: normal;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
#footer a:hover {
|
|
color: #fff;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.red {
|
|
color: red;
|
|
}
|
|
|
|
.green {
|
|
color: green;
|
|
}
|
|
|
|
.fragment {
|
|
position: relative;
|
|
width: 95%
|
|
left: 2.5%;
|
|
background: #CCC;
|
|
padding: 5px;
|
|
}
|
|
|
|
.larger {
|
|
font-size: medium;
|
|
}
|
|
|
|
.white-space {
|
|
white-space: pre;
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="content">
|
|
|
|
<div id="header">
|
|
<!-- "header-error" : Substitute me for Error messages -->
|
|
<span id="header-error" class="red">!ERROR_MSGS!</span>
|
|
<!-- "header-success" : Substitute me for Successful messages -->
|
|
<span id="header-success" class="green">!SUCCESS_MSGS!</span>
|
|
</div>
|
|
|
|
<div id="main">
|
|
|
|
<div>
|
|
<!-- "personal-msg-name" : Substitute me for the name of a personal message -->
|
|
<div id="personal-msg-name" class="red">!PERSONAL_MSG_NAME!</div>
|
|
<!-- "personal-msg-txt" : Substitute me for the text of a personal message -->
|
|
<div id="personal-msg-txt" class="white-space">!PERSONAL_MSG_TEXT!</div>
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<!-- "error-body" : Load error-body-tmpl.html on error here -->
|
|
<div id="error-body">
|
|
!ERROR_BODY!
|
|
</div> <!-- End of #error-body -->
|
|
|
|
<!-- "success-body" : Load success-body-tmpl.html on success here -->
|
|
<div id="success-body">
|
|
!SUCCESS_BODY!
|
|
</div> <!-- End of #success-body -->
|
|
|
|
</div> <!-- End of #main -->
|
|
|
|
<div id="footer">
|
|
<a href="https://devstar.rockstargames.com/wiki/index.php/Asset_Pipeline_Common_Errors"
|
|
title="Common Errors on Devstar Wiki" target="_blank">Common Errors Wiki</a>
|
|
//
|
|
<a href="mailto:*Tools@rockstarnorth.com?subject=Builder Error Email"
|
|
title="Contact Tools" target="_blank">Contact Tools</a>
|
|
</div>
|
|
|
|
</div> <!-- End of #content -->
|
|
|
|
</body>
|
|
|
|
</html> |