Fix design
This commit is contained in:
parent
443ed9347a
commit
344bf7d6ed
5 changed files with 16 additions and 72 deletions
|
@ -1,45 +1,4 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="medium-3 columns content-box sidebar">
|
||||
<div class="whitebox">
|
||||
<h2 class="boxhead">Search</h2>
|
||||
<div class="searchbox">
|
||||
<form>
|
||||
<input type="text" placeholder="Search..." class="last"/>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div class="whitebox">
|
||||
<h2 class="boxhead">Recent Comments</h2>
|
||||
</div>
|
||||
<div class="whitebox">
|
||||
<h2 class="boxhead">Archives</h2>
|
||||
</div>
|
||||
<div class="whitebox">
|
||||
<h2 class="boxhead">Categories</h2>
|
||||
<ul class="list last">
|
||||
<li><a href="#">Intern</a></li>
|
||||
<li><a href="#">Allgemein</a></li>
|
||||
<li><a href="#">Zeug</a></li>
|
||||
<li><a href="#">Off Topic</a></li>
|
||||
<li><a href="#">Projekte</a></li>
|
||||
<li><a href="#">Server</a></li>
|
||||
<li><a href="#">Proggen</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="whitebox">
|
||||
<h2 class="boxhead">Meta</h2>
|
||||
<ul class="list last">
|
||||
<li><a href="#">Log in</a></li>
|
||||
<li><a href="#">Entries RSS</a></li>
|
||||
<li><a href="#">Comments RSS</a></li>
|
||||
<li><a href="#">WordPress.org</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="columns small-12">
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<body>
|
||||
|
||||
<header class="header">
|
||||
<a class="#header"><img src="{{ "images/logo-green.png" | relative_url }}" alt="Zom.bi"></a>
|
||||
<a class="#header"><img src="{{ "/assets/images/logo-green.png" | relative_url }}" alt="Zom.bi"></a>
|
||||
<h2 class="tagline show-for-medium">The friendly neighborhood tech community</h2>
|
||||
<ul class="header-subnav show-for-medium">
|
||||
{% include menu.html %}
|
||||
|
@ -33,6 +33,3 @@
|
|||
</div>
|
||||
|
||||
<div class="row main">
|
||||
<div class="medium-9 columns content-box">
|
||||
<!-- Post begin -->
|
||||
<div class="whitebox">
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
{% for page in site.pages %}
|
||||
<li><a href="{{ page.url }}">{{ page.menutitle }}</a></li>
|
||||
{% for node in site.pages %}
|
||||
{% if node.url == page.url %}
|
||||
<li><a href="{{ node.url }}" class="is-active">{{ node.menutitle }}</a></li>
|
||||
{% else %}
|
||||
<li><a href="{{ node.url }}">{{ node.menutitle }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<li><a href="https://git.zom.bi/explore/projects">Git</a></li>
|
||||
<li><a href="https://wiki.zom.bi/">Wiki</a></li>
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
{% include header.html %}
|
||||
<div class="medium-12 columns content-box">
|
||||
<div class="whitebox">
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
||||
{% include footer.html %}
|
||||
|
|
|
@ -61,7 +61,7 @@ body {
|
|||
display: block;
|
||||
font-weight: bold;
|
||||
letter-spacing: 1px;
|
||||
transition: all 0.35s ease-in-out;
|
||||
/* transition: all 0.35s ease-in-out; */
|
||||
}
|
||||
|
||||
.header-subnav li a.is-active {
|
||||
|
@ -118,28 +118,9 @@ body {
|
|||
color: #1eb513 !important;
|
||||
}
|
||||
|
||||
.post .title {
|
||||
color: #1eb513;
|
||||
font-size: 2rem;
|
||||
line-height:2.2rem;
|
||||
}
|
||||
|
||||
.post .info {
|
||||
font-size: 0.8rem;
|
||||
color: #555;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.post .content {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.post .authorline {
|
||||
font-size: 0.75rem;
|
||||
color: #555;
|
||||
padding-left: 1.7rem;
|
||||
}
|
||||
.whitebox h1 { color: #1eb513; font-size: 2em; }
|
||||
.whitebox h2 { color: #1eb513; font-size: 1.5em; }
|
||||
.whitebox h3 { color: #1eb513; font-size: 1em; }
|
||||
|
||||
.sidebar .boxhead {
|
||||
font-size:1.1rem;
|
||||
|
@ -168,4 +149,3 @@ body {
|
|||
text-transform:lowercase;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue