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

View file

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

View file

@ -93,7 +93,7 @@
</div> </div>
</div> </div>
<pre><?php echo markdown(htmlspecialchars($post['content'])) ?></pre> <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> </div>
<?php } <?php }
} }