diff --git a/htdocs/assets/_footer.php b/htdocs/assets/_footer.php index ccbf602..53ac8dd 100644 --- a/htdocs/assets/_footer.php +++ b/htdocs/assets/_footer.php @@ -20,6 +20,7 @@ $featured_projects_footer = fetch_all_records($conn, "featured_projects"); if($featured_projects_footer -> num_rows > 0) { + //show all featured projects while($featured_footer_item = $featured_projects_footer -> fetch_assoc()) { echo " ".$featured_footer_item['name']." @@ -31,12 +32,20 @@
Follow Me On
- Instagram - Twitter - Linkedin - Github - Facebook - Mastodon + num_rows > 0) { + //show all social links + while($social = $socials -> fetch_assoc()) { + echo " + ".$social['platform']." + "; + } + } + + ?>

diff --git a/htdocs/assets/style.css b/htdocs/assets/style.css index b1edf72..ec7ab38 100644 --- a/htdocs/assets/style.css +++ b/htdocs/assets/style.css @@ -685,6 +685,10 @@ video { margin-bottom: 5rem; } +.mb-24 { + margin-bottom: 6rem; +} + .mb-3 { margin-bottom: 0.75rem; } @@ -809,10 +813,6 @@ video { margin-top: 2.2rem; } -.mb-24 { - margin-bottom: 6rem; -} - .flex { display: flex; } @@ -1258,31 +1258,6 @@ video { font-weight: 400; } -.text-\[\#38BDF8\] { - --tw-text-opacity: 1; - color: rgb(56 189 248 / var(--tw-text-opacity)); -} - -.text-\[\#3FF989\] { - --tw-text-opacity: 1; - color: rgb(63 249 137 / var(--tw-text-opacity)); -} - -.text-\[\#CD6CFB\] { - --tw-text-opacity: 1; - color: rgb(205 108 251 / var(--tw-text-opacity)); -} - -.text-\[\#DCDF3F\] { - --tw-text-opacity: 1; - color: rgb(220 223 63 / var(--tw-text-opacity)); -} - -.text-\[\#EC4B4B\] { - --tw-text-opacity: 1; - color: rgb(236 75 75 / var(--tw-text-opacity)); -} - .text-accent_four { --tw-text-opacity: 1; color: rgb(172 203 222 / var(--tw-text-opacity)); diff --git a/htdocs/projects.php b/htdocs/projects.php index 490914e..6cd9477 100644 --- a/htdocs/projects.php +++ b/htdocs/projects.php @@ -161,7 +161,7 @@ $years = create_project_years_array($conn); //show all currently working on topics while($working_on_topic = $working_on -> fetch_assoc()) { echo" -
".$working_on_topic['title']."
+
".$working_on_topic['title']."
"; } }