Add link to new site

This commit is contained in:
Alicia Sykes 2024-04-07 12:16:52 +01:00
parent 79e91ff0e9
commit 9be1173f80
2 changed files with 31 additions and 0 deletions

View file

@ -20,6 +20,10 @@
</head>
<body>
<a href="https://awesome-privacy.xys" class="new-version">
New version available!<br>
<span class="link">awesome-privacy.xyz</span>
</a>
<div id="app"></div>
<script>
window.$docsify = {

View file

@ -294,3 +294,30 @@ a.cover-link:after {
a.cover-link span {
mix-blend-mode: difference;
}
/******************************************************/
/***************** NEW VERSION BANNER *****************/
/******************************************************/
.new-version {
position: fixed;
bottom: 0.5rem;
right: 0.5rem;
z-index: 1;
width: fit-content;
margin: 0.25rem;
padding: 0.5rem 1rem;
background: #060b2b;
color: white;
border-radius: 10px;
font-size: 1.6rem;
font-family: 'Cutive Mono', monospace;
border: 3px solid #ff0078;
opacity: 0.8;
text-decoration: none;
}
.new-version .link {
color: #ff0078 !important;
font-weight: bold;
}