add linear-nebula
This commit is contained in:
parent
3182637185
commit
04c736f1f5
3 changed files with 137 additions and 0 deletions
54
linear/linear-nebula/dist/style.css
vendored
Normal file
54
linear/linear-nebula/dist/style.css
vendored
Normal file
|
@ -0,0 +1,54 @@
|
|||
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%;
|
||||
width: 100%;
|
||||
color: #FFF;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.pad {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.head {
|
||||
float: left;
|
||||
border-bottom-style: solid;
|
||||
background-color: #191970;
|
||||
width: 100%;
|
||||
color: #FFF;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.nav {
|
||||
text-align: center;
|
||||
word-spacing: 5px;
|
||||
color: #FFF;
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
a:link {
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
a:active {
|
||||
color: #FFF;
|
||||
}
|
56
linear/linear-nebula/dist/style.example
vendored
Normal file
56
linear/linear-nebula/dist/style.example
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;
|
||||
}
|
27
linear/linear-nebula/template.html
Executable file
27
linear/linear-nebula/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