css in assets
This commit is contained in:
parent
9f9f6241b2
commit
39769a89c0
39
example/assets/css/main.css
Normal file
39
example/assets/css/main.css
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
color: #333;
|
||||||
|
background-color: lightgrey;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content {
|
||||||
|
padding: 20px;
|
||||||
|
background-color: #fff;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
#dataImg {
|
||||||
|
float: right;
|
||||||
|
margin-left: 20px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logoDiv {
|
||||||
|
background-color: #444;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logoDiv img {
|
||||||
|
max-width: 60%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainNavDiv {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
@ -1,9 +1,9 @@
|
|||||||
<html>
|
<html>
|
||||||
{{> meta.html }}
|
{{> meta.html }}
|
||||||
<body style="margin: 0; padding: 2;">
|
<body>
|
||||||
{{> header.html }}
|
{{> header.html }}
|
||||||
|
|
||||||
<div style="padding: 20px; background-color: white;">
|
<div id="content">
|
||||||
{{{ Body }}}
|
{{{ Body }}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -1,16 +1,15 @@
|
|||||||
<html>
|
<html>
|
||||||
{{> meta.html }}
|
{{> meta.html }}
|
||||||
<body style="margin: 0; padding: 2;">
|
<body>
|
||||||
{{> header.html }}
|
{{> header.html }}
|
||||||
|
|
||||||
<div style="padding: 20px; background-color: white;">
|
<div id="content">
|
||||||
|
|
||||||
{{#if Data.bild }}
|
{{#if Data.bild }}
|
||||||
<img src="{{ Data.bild }}" style="float: right; margin-left: 20px; margin-bottom: 20px">
|
<img src="{{ Data.bild }}" id="dataImg">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{{ Body }}}
|
{{{ Body }}}
|
||||||
<div style="clear: both;"></div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<footer style="padding: 20px;">
|
<footer>
|
||||||
<div><b>service Level 1</b></div>
|
<div><b>service Level 1</b></div>
|
||||||
<ul>
|
<ul>
|
||||||
{{#each NavMap.de.SubMap.service.SubSlice }}
|
{{#each NavMap.de.SubMap.service.SubSlice }}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<header>
|
<header>
|
||||||
<div style="background-color:#444; padding: 20px;"><img src="../assets/img/logo.png" style="max-width: 60%;"></div>
|
<div id="logoDiv"><img src="../assets/img/logo.png"></div>
|
||||||
<div style="padding: 20px;">
|
<div id="mainNavDiv">
|
||||||
<div><b>main Level 1</b></div>
|
<div><b>main Level 1</b></div>
|
||||||
<ul>
|
<ul>
|
||||||
{{#each NavMap.de.SubMap.main.SubSlice }}
|
{{#each NavMap.de.SubMap.main.SubSlice }}
|
||||||
<li><a href="{{ GoTo }}">{{ Navname }}</a>
|
<li><a href="{{ GoTo }}">{{ Navname }}</a>
|
||||||
|
@ -2,13 +2,5 @@
|
|||||||
<title>{{ Meta.Title }}</title>
|
<title>{{ Meta.Title }}</title>
|
||||||
<meta name="description" content="{{ Meta.Description }}" />
|
<meta name="description" content="{{ Meta.Description }}" />
|
||||||
<meta name="keywords" content="{{ Meta.Keywords }}" />
|
<meta name="keywords" content="{{ Meta.Keywords }}" />
|
||||||
<style>
|
<link rel="stylesheet" type="text/css" href="../assets/css/main.css">
|
||||||
a {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
color: #333;
|
|
||||||
background-color: lightgrey;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</meta>
|
</meta>
|
||||||
|
Loading…
Reference in New Issue
Block a user