Skip to content

Commit

Permalink
Recent development status
Browse files Browse the repository at this point in the history
  • Loading branch information
GodMod committed Oct 29, 2017
1 parent 1cf6cfc commit b9841a8
Show file tree
Hide file tree
Showing 48 changed files with 6,387 additions and 0 deletions.
146 changes: 146 additions & 0 deletions custom.css
@@ -0,0 +1,146 @@
/* Game Background
*
* If you want to have the game specific background image, please uncomment the following block
*/
/*
body {
background:#000000 url('TEMPLATE_BACKGROUND') no-repeat center top;
background-attachment: T_BACKGROUND_POSITION;
}
#wrapper header {
background: none !important;
}
*/

/*============================================================================================*/

/* Fixed personal area
*
* If you want the personal area to have a fixed position, please uncomment the following block
*/

/*
#header {
margin-top: 60px;
}
#personalArea {
position:fixed;
padding-left: 0px;
padding-right: 0px;
width:100%;
z-index: 999;
}
#personalArea #personalAreaUser {
padding-left: 40px;
}
#personalArea #personalAreaTime {
padding-right: 40px;
}
*/

/*============================================================================================*/

/* Hide Portal Modules on Smartphones
*
* If you want to hide portal modules on Smartphone, get the CSS-Class for the module from the source text in your browser, uncomment the following block and add the CSS Class
*/
/*
@media all and (max-width: 480px) {
.offi_conf_portal, .birthday_portal {
display: none;
}
}
*/

/*============================================================================================*/

/* Give Article Headlines of some categories (here: Category #2) a special color */

/*
.article-container[data-article-category-id="2"] h2 a, .article_detail_container[data-article-category-id="2"] h1{
color: #efefef;
}
*/

/* Make the Ribbons to the same color */
/*
.article-container[data-article-category-id="2"] .ribbon > span {
background: linear-gradient(lighten(#efefef,20%) 0%, #efefef 100%);
color: #000;
}
*/

/*============================================================================================*/

/* If you want to embedd EQdkp Plus, give the body the class "embedded" and remove the reponsive Block from the body class. */

/*
body.embedded {
background: transparent;
}
.embedded #header, .embedded .personalAreaTime {
display: none;
}
.embedded #contentContainer {
background: transparent;
margin:0;
box-shadow: none;
border: none;
}
.embedded #personalArea {
padding-right: 20px;
padding-left: 20px;
margin-bottom: 0;
box-shadow: none;
}
.embedded #contentBody, .embedded #contentBody2 {
background: transparent;
border: none;
}
.embedded #footer, .embedded .copyright, .embedded #footer a, .embedded #copyright a {
color: inherit;
}
*/
/*============================================================================================*/
/*
*If u want to show Portalmodules in a row. Please uncomment the following block.
*/

/*
#portal-middle, #portal-footer{
display:flex;
justify-content:space-around;
align-items:stretch;
.portalbox{
flex:1 1 auto;
display: flex;
flex-direction: column;
}
.portalbox_content{
display:flex;
justify-content: space-around;
flex: 1 1 auto;
}
.colorswitch{
background-color: none;
display: flex;
align-items: flex-end;
text-align: center;
flex-wrap: wrap;
justify-content: center;
div{
background-color: transparent;}
}
}
*/
26 changes: 26 additions & 0 deletions email.tpl
@@ -0,0 +1,26 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{SUBJECT}</title>
</head>
<body style="background: linear-gradient(to bottom, #2e78b0 0%, #193759 100%);font-size: 13px;font-family: Tahoma, Arial, Verdana, sans-serif;color: #000;padding: 0;margin: 0;height: 100%">
<div id="outerWrapper" style="background: url(cid:backgroundhead_png) no-repeat scroll center 20px transparent;background-image: url(cid:backgroundhead_svg) no-repeat scroll center 20px transparent;background-size: 100%">
<div id="header" style="font-family: &quot;Trebuchet MS&quot;, Arial, sans-serif;vertical-align: middle;width: 80%;height: 120px;margin: 0 auto">
<img src="cid:headerlogo" id="logo" style="max-height: 100px;margin-left: 15px;float: left" /></div>
<div id="main" style="width: 80%;overflow: auto;margin: 0 auto;background-color: #F5F5F5;border: 1px solid #383838;border-radius: 4px 4px 4px 4px;box-shadow: 2px 2px 3px 0 #000;padding: 10px">
<div id="content" style="background-color: #FFF;padding: 20px;border: 1px solid #AEAEAE">
<h1 style="font-family: &quot;Trebuchet MS&quot;, Arial, sans-serif;font-weight: bold;padding-bottom: 5px;border-bottom: 1px solid #CCC;margin: 5px 0 10px 0;font-size: 20px">{SUBJECT}</h1>
{CONTENT}
</div>

<div id="signature" style="margin-top: 1em">
{SIGNATURE}
</div>
</div>
</div>
<div id="footer" style="margin-top: 1em;font-size: 12px;text-align: center;padding: 10px;color: #fff">
<a href="{PLUSLINK}" style="color: #fff;text-decoration: none">EQDKP Plus {PLUSVERSION}</a>
</div>
</body>
</html>

0 comments on commit b9841a8

Please sign in to comment.