add linear-nebula

This commit is contained in:
abbie 2021-09-20 16:39:09 +01:00
parent 3182637185
commit 04c736f1f5
No known key found for this signature in database
GPG key ID: 04DDE463F9200F87
3 changed files with 137 additions and 0 deletions

54
linear/linear-nebula/dist/style.css vendored Normal file
View 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
View 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;
}

View 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>