Back to blog from RCC
This commit is contained in:
parent
fe2e50b3b6
commit
fbca74ccec
2 changed files with 28 additions and 0 deletions
|
@ -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>
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
Reference in a new issue