aboutsummaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-08-16 14:10:19 +0100
committerFrankie B <git@diskfloppy.me>2023-08-22 20:03:02 +0100
commit7210fd59ff4036c3448614b97a9de77428fd356d (patch)
tree973dcbcd3d3a81c8a68ec4286234009a65588ffd /resources
parente144965ed5c63c1a81440c3379bd878a0d0b4125 (diff)
Tidy up css
Diffstat (limited to 'resources')
-rw-r--r--resources/views/components/codeblock.blade.php2
-rw-r--r--resources/views/pages/bookmarks.blade.php2
-rw-r--r--resources/views/pages/guestbook.blade.php4
-rw-r--r--resources/views/pages/home.blade.php9
-rw-r--r--resources/views/pages/music.blade.php5
-rw-r--r--resources/views/pages/weather.blade.php2
6 files changed, 13 insertions, 11 deletions
diff --git a/resources/views/components/codeblock.blade.php b/resources/views/components/codeblock.blade.php
index 3d3594f..ff7c2a5 100644
--- a/resources/views/components/codeblock.blade.php
+++ b/resources/views/components/codeblock.blade.php
@@ -7,7 +7,7 @@ $hl = new \Highlight\Highlighter();
$highlighted = $hl->highlight($lang, Storage::disk('local')->get($file_path));
$file_size = Storage::disk('local')->size($file_path);
@endphp
-<div class="codeblock">
+<div class="code-block">
<h1>{{ $file_name }} <small>{{ $file_size}} bytes</small></h1>
<hr>
<code class="hljs {{$highlighted->language}}">{!! $highlighted->value !!}</code>
diff --git a/resources/views/pages/bookmarks.blade.php b/resources/views/pages/bookmarks.blade.php
index 01d11bc..54d464d 100644
--- a/resources/views/pages/bookmarks.blade.php
+++ b/resources/views/pages/bookmarks.blade.php
@@ -11,7 +11,7 @@
@endphp
@foreach ($categories as $category)
- <table class="infotable">
+ <table class="info-table">
<caption>
<h1>{{ $category->name }}</h1>
diff --git a/resources/views/pages/guestbook.blade.php b/resources/views/pages/guestbook.blade.php
index 2037311..08bc7cb 100644
--- a/resources/views/pages/guestbook.blade.php
+++ b/resources/views/pages/guestbook.blade.php
@@ -2,13 +2,13 @@
@section('title', 'Guestbook')
@section('content')
<br>
- <table class="gb-entryform-container">
+ <table class="gb-entry-form-container">
<tr>
<td>
<form method="POST" action="/guestbook">
@csrf
<x-honeypot />
- <table class="gb-entryform">
+ <table class="gb-entry-form">
<tr>
<td>
<label for="name"><strong>Name:</strong></label>
diff --git a/resources/views/pages/home.blade.php b/resources/views/pages/home.blade.php
index ab33c93..d32f8ba 100644
--- a/resources/views/pages/home.blade.php
+++ b/resources/views/pages/home.blade.php
@@ -4,7 +4,7 @@
@section('content')
<p>Hi! This my personal homepage on the <strong>W</strong>orld <strong>W</strong>ide <strong>W</strong>eb.
- <table class="infotable">
+ <table class="info-table">
<caption>
<h1>Fun Facts</h1>
<hr>
@@ -21,10 +21,13 @@
<tr>
<td>&#9670; Some people say I suck at PHP, but that's clearly wrong :P</td>
</tr>
+ <tr>
+ <td>&#9670; Some of my favorite games are: OneShot, Minecraft, Stardew Valley, N++ and Starbound</td>
+ </tr>
</table>
<br>
- <table class="infotable">
+ <table class="info-table">
<caption>
<h1>Interests</h1>
<hr>
@@ -44,7 +47,7 @@
</table>
<br>
- <table class="infotable">
+ <table class="info-table">
<caption>
<h1>Contact &amp; social</h1>
<hr>
diff --git a/resources/views/pages/music.blade.php b/resources/views/pages/music.blade.php
index e24f88c..3e97daa 100644
--- a/resources/views/pages/music.blade.php
+++ b/resources/views/pages/music.blade.php
@@ -11,7 +11,7 @@
$top_tracks = json_decode(file_get_contents($api_root . '/lastfm/top'));
$count = 0;
@endphp
- <table class="infotable">
+ <table class="info-table">
<tr>
<td colspan="4">
<h2>Last/Current Track:</h2>
@@ -32,8 +32,7 @@
<h2>Top {{ $cfg['toptracks'] }} Tracks (Last 7 days)</h2>
</td>
</tr>
- <tr
- ">
+ <tr>
<td style="text-align: right"><b>#</b></td>
<td><b>Track</b></td>
<td><b>Artist</b></td>
diff --git a/resources/views/pages/weather.blade.php b/resources/views/pages/weather.blade.php
index 6f67b80..823c448 100644
--- a/resources/views/pages/weather.blade.php
+++ b/resources/views/pages/weather.blade.php
@@ -17,7 +17,7 @@ $data = json_decode(file_get_contents($api_root.'/weather'));
$updated = gmdate('H:i Y-m-d', $data->updated);
$data = $data->current;
@endphp
-<table class="infotable">
+<table class="info-table">
<caption>
<h1>Local Weather</h1>
<hr>