themes
This commit is contained in:
commit
79caff7858
8 changed files with 326 additions and 0 deletions
56
3box-base/dist/style.css
vendored
Normal file
56
3box-base/dist/style.css
vendored
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: Verdana, sans-serif;
|
||||||
|
background-color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
.column {
|
||||||
|
float: left;
|
||||||
|
background-color: #FFF;
|
||||||
|
overflow-x: hidden;
|
||||||
|
z-index: 1;
|
||||||
|
min-height: 85vh;
|
||||||
|
height: auto !important;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left {
|
||||||
|
width: 30%;
|
||||||
|
color: #000;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right {
|
||||||
|
color: #000;
|
||||||
|
width: 60%;
|
||||||
|
border-left-style: solid;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pad {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.head {
|
||||||
|
float: left;
|
||||||
|
border-bottom-style: solid;
|
||||||
|
width: 100%;
|
||||||
|
color: #000;
|
||||||
|
background-color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:active {
|
||||||
|
color: #000;
|
||||||
|
}
|
28
3box-base/template.html
Executable file
28
3box-base/template.html
Executable file
|
@ -0,0 +1,28 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>{SITE_NAME}</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="http://{SITE_DOMAIN}/ewfm_theme/style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="head">
|
||||||
|
<div class="pad">
|
||||||
|
<h1>{PAGE_TITLE}</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="column left">
|
||||||
|
<div class="pad">
|
||||||
|
{DIRECTORY_SLASH_P}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column right">
|
||||||
|
<div class="pad">
|
||||||
|
{PAGE_CONTENT}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
56
3box-nebula/dist/style.css
vendored
Normal file
56
3box-nebula/dist/style.css
vendored
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: Verdana, sans-serif;
|
||||||
|
background-color: #4B0082;
|
||||||
|
}
|
||||||
|
|
||||||
|
.column {
|
||||||
|
float: left;
|
||||||
|
background-color: #4B0082;
|
||||||
|
overflow-x: hidden;
|
||||||
|
z-index: 1;
|
||||||
|
min-height: 85vh;
|
||||||
|
height: auto !important;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left {
|
||||||
|
width: 30%;
|
||||||
|
color: #FFF;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right {
|
||||||
|
color: #FFF;
|
||||||
|
width: 60%;
|
||||||
|
border-left-style: solid;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pad {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.head {
|
||||||
|
float: left;
|
||||||
|
border-bottom-style: solid;
|
||||||
|
width: 100%;
|
||||||
|
color: #FFF;
|
||||||
|
background-color: #191970;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:active {
|
||||||
|
color: #FFF;
|
||||||
|
}
|
28
3box-nebula/template.html
Executable file
28
3box-nebula/template.html
Executable file
|
@ -0,0 +1,28 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>{SITE_NAME}</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="http://{SITE_DOMAIN}/ewfm_theme/style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="head">
|
||||||
|
<div class="pad">
|
||||||
|
<h1>{PAGE_TITLE}</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="column left">
|
||||||
|
<div class="pad">
|
||||||
|
{DIRECTORY_SLASH_P}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column right">
|
||||||
|
<div class="pad">
|
||||||
|
{PAGE_CONTENT}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
52
linear-base/dist/style.css
vendored
Normal file
52
linear-base/dist/style.css
vendored
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: Verdana, sans-serif;
|
||||||
|
background-color: #FFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
.column {
|
||||||
|
float: left;
|
||||||
|
overflow-x: hidden;
|
||||||
|
z-index: 1;
|
||||||
|
min-height: 85vh;
|
||||||
|
height: auto !important;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
color: #000;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pad {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.head {
|
||||||
|
float: left;
|
||||||
|
border-bottom-style: solid;
|
||||||
|
width: 100%;
|
||||||
|
color: #000;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav {
|
||||||
|
text-align: center;
|
||||||
|
word-spacing: 5px;
|
||||||
|
color: #000;
|
||||||
|
padding-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:active {
|
||||||
|
color: #000;
|
||||||
|
}
|
27
linear-base/template.html
Executable file
27
linear-base/template.html
Executable file
|
@ -0,0 +1,27 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>{SITE_NAME}</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="http://{SITE_DOMAIN}/ewfm_theme/style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="head">
|
||||||
|
<div class="pad">
|
||||||
|
<h1>{PAGE_TITLE}</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="nav">
|
||||||
|
<br/>
|
||||||
|
{DIRECTORY_A}
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="pad">
|
||||||
|
{PAGE_CONTENT}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
52
linear-woodwork/dist/style.css
vendored
Normal file
52
linear-woodwork/dist/style.css
vendored
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: Verdana, sans-serif;
|
||||||
|
background-color: #F4A460;
|
||||||
|
}
|
||||||
|
|
||||||
|
.column {
|
||||||
|
float: left;
|
||||||
|
overflow-x: hidden;
|
||||||
|
z-index: 1;
|
||||||
|
min-height: 85vh;
|
||||||
|
height: auto !important;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
color: black;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pad {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.head {
|
||||||
|
float: left;
|
||||||
|
border-bottom-style: solid;
|
||||||
|
width: 100%;
|
||||||
|
color: black;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav {
|
||||||
|
text-align: center;
|
||||||
|
word-spacing: 5px;
|
||||||
|
color: black;
|
||||||
|
padding-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:active {
|
||||||
|
color: black;
|
||||||
|
}
|
27
linear-woodwork/template.html
Executable file
27
linear-woodwork/template.html
Executable file
|
@ -0,0 +1,27 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>{SITE_NAME}</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="http://{SITE_DOMAIN}/ewfm_theme/style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="head">
|
||||||
|
<div class="pad">
|
||||||
|
<h1>{PAGE_TITLE}</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="nav">
|
||||||
|
<br/>
|
||||||
|
{DIRECTORY_A}
|
||||||
|
</div>
|
||||||
|
<div class="column">
|
||||||
|
<div class="pad">
|
||||||
|
{PAGE_CONTENT}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue