fixed footer and css
This commit is contained in:
parent
193bfd2247
commit
1177167a65
5 changed files with 103 additions and 161 deletions
|
@ -1,51 +1,47 @@
|
||||||
<div id="admin">
|
<div id="admin">
|
||||||
<h3>Page bearbeiten</h3>
|
<h3>Page bearbeiten</h3>
|
||||||
|
|
||||||
<form action="<?php echo $this->base ?>/adminPage/save"method="post">
|
<form action="<?php echo $this->base ?>/adminPage/save" method="post">
|
||||||
<input type="hidden" name="id" value="<?php echo $this->page['id'] ?>" />
|
<div style="display: none"><input type="hidden" name="id" value="<?php echo $this->page['id'] ?>" /></div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Aktiv</dt>
|
<dt>Aktiv</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<input type="checkbox" name="active" <?php if($this->page['active']) echo 'checked="checked"' ?> />
|
<input type="checkbox" name="active" <?php if($this->page['active']) echo 'checked="checked"' ?> />
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Titel</dt>
|
<dt>Titel</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<input class="textfield" type="text" name="title" value="<?php echo $this->page['title'] ?>"/>
|
<input class="textfield" type="text" name="title" value="<?php echo $this->page['title'] ?>"/>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Untertitel</dt>
|
<dt>Untertitel</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<input class="textfield" type="text" name="subtitle" value="<?php echo $this->page['subtitle'] ?>"/>
|
<input class="textfield" type="text" name="subtitle" value="<?php echo $this->page['subtitle'] ?>"/>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Url</dt>
|
<dt>Url</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<input class="textfield" type="text" name="url" value="<?php echo $this->page['url'] ?>"/>
|
<input class="textfield" type="text" name="url" value="<?php echo $this->page['url'] ?>"/>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Headerbild</dt>
|
<dt>Headerbild</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<input class="textfield" type="text" name="header_image" value="<?php echo $this->page['header_image'] ?>"/>
|
<input class="textfield" type="text" name="header_image" value="<?php echo $this->page['header_image'] ?>"/>
|
||||||
<a href="javascript: void(0);" onclick="window.open('/adminPage/image/type/header', 'fenster1', 'width=600,height=400,status=yes,scrollbars=yes,resizable=yes');">Auswählen</a>
|
<a href="javascript: void(0);" onclick="window.open('/adminPage/image/type/header', 'fenster1', 'width=600,height=400,status=yes,scrollbars=yes,resizable=yes');">Auswählen</a>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Inhalt</dt>
|
<dt>Inhalt</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<!-- Gets replaced with TinyMCE, remember HTML in a textarea should be encoded -->
|
<textarea id="content" name="content" rows="15" cols="80"><?php echo htmlentities($this->page['content']) ?></textarea>
|
||||||
<div>
|
</dd>
|
||||||
<textarea id="content" name="content" rows="15" cols="80" style="width: 500px"><?php echo htmlentities($this->page['content']) ?></textarea>
|
</dl>
|
||||||
</div>
|
<p>
|
||||||
|
<input type="submit" name="save" value="speichern" />
|
||||||
</dd>
|
</p>
|
||||||
</dl>
|
|
||||||
<p>
|
|
||||||
<input type="submit" name="save" value="speichern" />
|
|
||||||
</p>
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
|
@ -18,7 +18,7 @@
|
||||||
<meta name="Description" content="" />
|
<meta name="Description" content="" />
|
||||||
<meta name="keywords" content="" />
|
<meta name="keywords" content="" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body<?php if(Access::isLogged()): ?> class="admin"<?php endif ?>>
|
||||||
|
|
||||||
<div id="container">
|
<div id="container">
|
||||||
<header>
|
<header>
|
||||||
|
@ -63,6 +63,11 @@
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
|
<p id="social">
|
||||||
|
<a href="https://www.facebook.com/pages/Naturheilpraxis-SEINHEIT/190046497711632">
|
||||||
|
<img src="<?php echo $this->base ?>/img/facebook-icon.png" alt="SEINHEIT bei Facebook">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
<p>Naturheilpraxis SEINHEIT. Kinga Pannek, Bahnhofstraße 105, 8620 Wetzikon, Schweiz</p>
|
<p>Naturheilpraxis SEINHEIT. Kinga Pannek, Bahnhofstraße 105, 8620 Wetzikon, Schweiz</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
<?php
|
|
||||||
class DidgeridooArtwork_Page_Plugin_Base extends DidgeridooArtwork_Page_Plugin_Abstract
|
|
||||||
{
|
|
||||||
public function render($params)
|
|
||||||
{
|
|
||||||
return $this->_view->base;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
body.admin footer {
|
||||||
|
margin-bottom: 4em;
|
||||||
|
}
|
||||||
|
|
||||||
#adminNavigation {
|
#adminNavigation {
|
||||||
font-family: verdana;
|
font-family: verdana;
|
||||||
background: #90CB93;
|
background: #90CB93;
|
||||||
|
@ -42,12 +46,6 @@
|
||||||
background: #216849;
|
background: #216849;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#stage img {
|
|
||||||
background-color: transparent;
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#admin dd {
|
#admin dd {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
line-height: 1.6em;
|
line-height: 1.6em;
|
||||||
|
@ -66,6 +64,13 @@ input, textarea {
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
width: 90% !important;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
#admin dl {
|
#admin dl {
|
||||||
margin: 15px 0;
|
margin: 15px 0;
|
||||||
}
|
}
|
||||||
|
@ -120,31 +125,3 @@ textarea {
|
||||||
width: 650px;
|
width: 650px;
|
||||||
height: 350px;
|
height: 350px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.smallnavigate {
|
|
||||||
width: 155px;
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.smallnavigate a {
|
|
||||||
text-decoration: none;
|
|
||||||
color: #EF871F;
|
|
||||||
font-size: 12pt;
|
|
||||||
}
|
|
||||||
.smallnavigate span {
|
|
||||||
line-height: 23px;
|
|
||||||
}
|
|
||||||
.smallnavigate a:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
.smallnavigate img {
|
|
||||||
height: 23px;
|
|
||||||
widht: 14px;
|
|
||||||
}
|
|
||||||
.box {
|
|
||||||
width: 200px;
|
|
||||||
float: left;
|
|
||||||
margin-left: 25px;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
|
@ -83,78 +83,6 @@ img { max-width: 100%; }
|
||||||
#stage {
|
#stage {
|
||||||
border-top: 5px solid #90cb93;
|
border-top: 5px solid #90cb93;
|
||||||
padding: 50px 0px;
|
padding: 50px 0px;
|
||||||
background: url("/img/background.gif") no-repeat center 110px ;
|
|
||||||
min-height: 510px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#imagearea {
|
|
||||||
margin: 0px 0 260px;
|
|
||||||
clear: both;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#imagearea #titleimage {
|
|
||||||
border-top: 10px solid #216f85;
|
|
||||||
padding-top: 35%;
|
|
||||||
background-image: url("file://localhost/Users/karlpannek/Dropbox/Kinga%20Praxis%20Fotos/Originale/AR8R8369.JPG");
|
|
||||||
background-size: 1100px;
|
|
||||||
background-size: cover;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#imagearea #imagelist {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#imagearea #imagelist li {
|
|
||||||
list-style-type: none;
|
|
||||||
display: block;
|
|
||||||
float: left;
|
|
||||||
width: 350px;
|
|
||||||
height: 200px;
|
|
||||||
border: 0px solid black;
|
|
||||||
margin-right: 5px;
|
|
||||||
background-size: 342px;
|
|
||||||
background-size: cover;
|
|
||||||
}
|
|
||||||
#imagearea #imagelist li p {
|
|
||||||
background-color: #90cb93;
|
|
||||||
height: 20px;
|
|
||||||
margin: 0;
|
|
||||||
padding: 10px;
|
|
||||||
text-align: center;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
#imagearea .testimonial {
|
|
||||||
background-color: #216f85;
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
#imagearea .testimonial blockquote {
|
|
||||||
padding: 35px;
|
|
||||||
color: white;
|
|
||||||
background-color: transparent;
|
|
||||||
height: auto;
|
|
||||||
font-style: italic;
|
|
||||||
font-size: 1.2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
#angebote {
|
|
||||||
float: right;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
#angebote a {
|
|
||||||
border: 0;
|
|
||||||
background: none;
|
|
||||||
margin: 10px 0 10px 10px;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
#angebote a img {
|
|
||||||
border: 0;
|
|
||||||
background: white;
|
|
||||||
border: 1px solid #aaa;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p.diagramm {
|
p.diagramm {
|
||||||
|
@ -164,4 +92,48 @@ p.diagramm {
|
||||||
|
|
||||||
#stage p.diagramm img {
|
#stage p.diagramm img {
|
||||||
float: none;
|
float: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
clear: both;
|
||||||
|
border-top: 3px solid #90CB93;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer #social {
|
||||||
|
float: right;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.col3 .box {
|
||||||
|
width: 33%;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
|
||||||
|
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
||||||
|
box-sizing: border-box; /* Opera/IE 8+ */
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box h2 {
|
||||||
|
background: #90CB93;
|
||||||
|
color: white;
|
||||||
|
font-size: 1em;
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box h2 a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box.cite {
|
||||||
|
background: #216f85;
|
||||||
|
color: white;
|
||||||
|
padding: 2em;
|
||||||
|
text-align: center;
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1.9em;
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue