updated renovate.json
All checks were successful
continuous-integration/drone/push Build is passing

added mastodon follow
This commit is contained in:
Samuel Philipp 2020-07-30 23:49:13 +02:00
parent 631f8bd4b0
commit 6702d8b81a
3 changed files with 19 additions and 6 deletions

View file

@ -3,7 +3,7 @@
"samuel-p"
],
"baseBranches": [
"master"
"develop"
],
"rangeStrategy": "bump"
}

View file

@ -36,6 +36,10 @@
<body>
<div class="site-container">
<div class="content">
<div class="follow">
<a rel="me" href="https://social.tchncs.de/@samuel_p">
<img alt="Mastodon Follow" src="https://img.shields.io/mastodon/follow/249926?domain=https%3A%2F%2Fsocial.tchncs.de"></a>
</div>
<div id="developer" class="image"></div>
<div id="magician" class="image"></div>
<div class="headers">
@ -50,10 +54,10 @@
<code id="links" class="image">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1" width="100%" height="100%" viewBox="0 0 2560 1440" preserveAspectRatio="xMidYMid slice">
<a xlink:href="//sp-codes.de" style="width: 100%; height: 100%;">
<a xlink:href="//sp-codes.de" class="full-size">
<path d="M 0,796 C 0,796 1330,480 2560,460 L 2560,0 L 0,0 Z" fill-opacity="0"></path>
</a>
<a xlink:href="//sp-magic.de" style="width: 100%; height: 100%;">
<a xlink:href="//sp-magic.de" class="full-size">
<path d="M 0,796 C 0,796 1330,480 2560,460 L 2560,1440 L 0,1440 Z" fill-opacity="0"></path>
</a>
</svg>
@ -66,9 +70,6 @@
<div><a target="_blank" href="https://git.sp-codes.de/samuel-p/samuel-philipp.de"><span
class="fas fa-code mr-2"></span>Code</a></div>
</div>
<div class="d-none">
<a rel="me" href="https://social.tchncs.de/@samuel_p">Mastodon</a>
</div>
</div>
<div class="footer">
<div class="d-flex justify-content-start flex-wrap p-2 menu border-top">

View file

@ -52,6 +52,14 @@ body {
z-index: 0;
}
.follow {
position: absolute;
top: 0;
right: 0;
padding: 1rem;
z-index: 1;
}
#developer {
background-image: url('../img/sp-codes.png');
}
@ -132,3 +140,7 @@ body {
}
}
.full-size {
width: 100%;
height: 100%;
}