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> <body>
<div class="header"> <div class="header">
<a href="./" class="title">Rangitaki Control Center</a> <a href="./" class="title">Rangitaki Control Center</a>
<a href="../" class="back">Back to the blog</a>
</div> </div>
<div class="main"> <div class="main">
<?php <?php
@ -144,6 +145,13 @@ THE SOFTWARE.
<?php <?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> </div>
<script src="./res/rcc.js"></script> <script src="./res/rcc.js"></script>
</body> </body>

View file

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