Back to blog from RCC

This commit is contained in:
mmk2410 2015-12-05 18:30:51 +01:00
parent fe2e50b3b6
commit fbca74ccec
2 changed files with 28 additions and 0 deletions

View File

@ -32,6 +32,7 @@ THE SOFTWARE.
<body>
<div class="header">
<a href="./" class="title">Rangitaki Control Center</a>
<a href="../" class="back">Back to the blog</a>
</div>
<div class="main">
<?php
@ -144,6 +145,13 @@ THE SOFTWARE.
<?php
}
?>
<section class="card" id="back-card">
<div class="headline">Back</div>
<p>
Go back to your blog.
</p>
<a href="../" class="button">GO BACK</a>
</section>
</div>
<script src="./res/rcc.js"></script>
</body>

View File

@ -63,6 +63,16 @@ body{
position: absolute;
}
.back {
color: #fff;
font-size: 18px;
text-decoration: none;
line-height: 64px;
vertical-align: middle;
right: 75px;
position: absolute;
}
/* MAIN */
.card{
@ -244,4 +254,14 @@ form{
left: 25px;
}
.back {
display: none;
}
}
@media screen and (min-width: 721px) {
#back-card {
display: none;
}
}