funky buttons

This commit is contained in:
biglyderv 2025-01-22 06:11:16 -05:00
parent 7e95520506
commit a24dd957f7
3 changed files with 12 additions and 9 deletions

View file

@ -185,7 +185,7 @@ iframe {
border: none;
}
.header a {
.header a, .clickie {
text-decoration: none;
color: inherit;
font-weight: bold;
@ -195,3 +195,8 @@ display: flex;
align-items: center;
justify-content: center;
}
.clickie {
width: min-content;
margin-top: 40px;
}

View file

@ -6,18 +6,16 @@
page_header();
?>
<?php if (!($_GET['page'] > 0)) { ?>
<div class="banner"><img class="banner-background" src="/img/newlogo.svg">
<div class="banner-content">
<div class="banner"><img class="banner-background" src="/img/newlogo.svg">
<div class="banner-content">
<h1>BiglyChat</h1>
<pre>BiglyChat is a niche forum for Dervland experiments and games.</pre>
<h2>Community</h2>
<a class="form-button" href="/register.php">Join the Community</a>
<a class="form-button" href="/tou.php">Terms of Use</a>
<a class="form-button" href="https://dervland.net/">More Projects</a>
</div>
</div>
</div>
</div>
<?php
}
comments("root","root");

View file

@ -93,7 +93,7 @@
</div>
</div>
<pre><?php echo markdown(htmlspecialchars($post['content'])) ?></pre>
<a class="form-button" href="/comment.php?id=<?php echo $post['id']?>">Replies</a>
<a class="clickie" href="/comment.php?id=<?php echo $post['id']?>"><img class="header-img header-link" src="/img/mail.svg">Replies</a>
</div>
<?php }
}