mirror of https://github.com/tildeclub/site.git
Merge pull request #56 from litemotiv/tweaks
A few small tweaks to the header and stylesheet
This commit is contained in:
commit
b113fe11a3
12
header.php
12
header.php
|
@ -1,7 +1,7 @@
|
||||||
<html lang="en">
|
<!DOCTYPE html>
|
||||||
|
<html dir="ltr" lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title><?=isset($title) ? $title : "Welcome to ~tilde.club~"?></title>
|
<title><?=isset($title) ? $title : "Welcome to ~tilde.club~"?></title>
|
||||||
|
|
||||||
|
@ -16,8 +16,6 @@
|
||||||
<?php include "nav.html"; ?>
|
<?php include "nav.html"; ?>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<!-- RSS Icon -->
|
<!-- RSS Icon -->
|
||||||
<div class="rss-icon">
|
<a href="/changes.rss" class="rss-icon" title="RSS Feed">
|
||||||
<a href="/changes.rss" title="RSS Feed">
|
<img src="/images/rss.png" width="24" alt="RSS icon">
|
||||||
<img src="/images/rss.png" alt="RSS Feed">
|
</a>
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
|
@ -78,8 +78,8 @@ h1 {
|
||||||
50% { opacity: 0; }
|
50% { opacity: 0; }
|
||||||
}
|
}
|
||||||
@keyframes reveal {
|
@keyframes reveal {
|
||||||
from { width: 2em; } /* Width of ::before */
|
from { max-width: 2em; } /* Width of ::before */
|
||||||
to { width: 100%; }
|
to { max-width: 100%; }
|
||||||
}
|
}
|
||||||
#fancyboi {
|
#fancyboi {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
@ -135,11 +135,6 @@ code > span.fl {
|
||||||
padding: 14px;
|
padding: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rss-icon img {
|
|
||||||
width: 24px; /* Adjust icon size */
|
|
||||||
height: 24px; /* Adjust icon size */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Page content */
|
/* Page content */
|
||||||
.content {
|
.content {
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
|
|
Loading…
Reference in New Issue