fix the CSS styling when resizing the window

This commit is contained in:
root 2025-02-19 08:33:21 +01:00
parent 35e1b130a8
commit 77faa0971f
4 changed files with 36 additions and 10 deletions

View file

@ -115,6 +115,9 @@ V1.0.1:
- git: implement .gitignore to ignore www/participants, otherwise you can't do torsocks git pull without having to do a git stash - git: implement .gitignore to ignore www/participants, otherwise you can't do torsocks git pull without having to do a git stash
- py: since .gitignore makes it so that www/participants doesnt exist, automatically create the directory structure from www/.official_participants - py: since .gitignore makes it so that www/participants doesnt exist, automatically create the directory structure from www/.official_participants
- git: figured out how to have an automatically updated lantern instance via gitignore+cronjob - git: figured out how to have an automatically updated lantern instance via gitignore+cronjob
V1.0.2:
- php+css : make the css styling not ugly on mobile
``` ```
Future Versions: Future Versions:

View file

@ -60,13 +60,13 @@ if (!preg_match("~^(?:f|ht)tps?://~i", $data[3])) {
if ($oldcatname != $data[1]){ if ($oldcatname != $data[1]){
//echo "<td><tr></tr><tr></tr><tr></tr></td>"; // skip a row if new category //echo "<td><tr></tr><tr></tr><tr></tr></td>"; // skip a row if new category
//echo "<td><tr></tr><tr></tr><tr></tr></td>"; // skip a row if new category //echo "<td><tr></tr><tr></tr><tr></tr></td>"; // skip a row if new category
echo "<td><p><h4>" . $data[1] . ' </h4></p></td>'; // display the category as its the first row with this new category echo '<td class="category"><p><h4>' . $data[1] . ' </h4></p></td>'; // display the category as its the first row with this new category
$oldcatname=$data[1]; $oldcatname=$data[1];
}else{ }else{
echo "<td><p>" . ' </p></td>'; // category is already displayed so skip it (empty cell in category column) echo "<td><p>" . ' </p></td>'; // category is already displayed so skip it (empty cell in category column)
} }
echo "<td>" ; // begin the table cell echo '<td class="linktitle"><p class="linktitle">' ; // begin the table cell of link title
if($data[4] == "YES"){ if($data[4] == "YES"){
echo '<a class="sensitivelink" href="'; // begin a href echo '<a class="sensitivelink" href="'; // begin a href
}else{ }else{
@ -74,7 +74,7 @@ if (!preg_match("~^(?:f|ht)tps?://~i", $data[3])) {
} }
//echo $data[3] . '"> '; // display the link //echo $data[3] . '"> '; // display the link
echo $urllink . '"> '; // display the link echo $urllink . '"> '; // display the link
echo $data[2] . ' </a></td><td class="description">'; // display the link title and close the a href and first cell, open the second cell echo $data[2] . ' </a></p></td><td class="description">'; // display the link title and close the a href and first cell, open the second cell
echo $data[5] . " </td><td>"; // OPTIONAL: display the description column echo $data[5] . " </td><td>"; // OPTIONAL: display the description column
echo $data[7] . " </td><td>"; // display the score and close the second cell, open the third cell echo $data[7] . " </td><td>"; // display the score and close the second cell, open the third cell
if($data[6] == "YES"){ if($data[6] == "YES"){
@ -196,8 +196,7 @@ if (($handle = fopen($csvfile, "r")) !== FALSE) {
</br> </br>
<h1><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/darknet-lantern"><img src="img/lantern project large.png" class="projectbanner"></a></h1>
<h1><a href="http://git.nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/nihilist/darknet-lantern"><img src="img/lantern project large.png"></a></h1>
<p><u>Update Frequency:</u> every 3 hours</p> </br> <p><u>Update Frequency:</u> every 3 hours</p> </br>

View file

@ -8,10 +8,10 @@
<link rel="stylesheet" type="text/css" href="style.css"> <link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="/img/logo-favicon.png"> <link rel="icon" href="/img/logo-favicon.png">
</head> </head>
<center > <center>
<div class="width-class">
<?php <?php
require("header.php"); require("header.php");
$min_length = 1; $min_length = 1;
@ -85,10 +85,11 @@ require("header.php");
} }
else{ // if query length is less than minimum or more than maximum else{ // if query length is less than minimum or more than maximum
echo '</br></br><img src="img/logo-large.png"><p>Search query must be between '.$min_length . " and ".$max_length . " characters.</p>"; echo '</br></br><img src="img/logo-large.png" class="width: 100%"><p>Search query must be between '.$min_length . " and ".$max_length . " characters.</p>";
// TODO list the available categories // TODO list the available categories
} }
?> ?>
</div>
<?php <?php
require("footer.php"); require("footer.php");
?> ?>

View file

@ -9,6 +9,15 @@
font-family: 'Source Code Pro', monospace; font-family: 'Source Code Pro', monospace;
} }
.width-class{
width: 100%;
object-fit: contain;
}
.projectbanner{
max-width: 100%;
}
.banner{ .banner{
width: 260px; width: 260px;
@ -30,6 +39,8 @@
color: #fc6e02; color: #fc6e02;
} }
.imgRz{ .imgRz{
width: 100%; width: 100%;
height: 50%; height: 50%;
@ -137,7 +148,7 @@ body{
width: 100% width: 100%
} }
.column-container{ .column-contaianer{
width: 100%; width: 100%;
height: 100vh; height: 100vh;
display: flex; display: flex;
@ -207,7 +218,17 @@ h1,h2,h3,p,td{
} }
.description{ .description{
max-width: 500px; max-width: 100%;
min-width: 50px;
}
.category{
max-width: 80px;
word-wrap: break-word;
}
.linktitle{
max-width: 150px;
word-wrap: break-word;
} }
h3,h2{ h3,h2{
@ -222,6 +243,7 @@ border: 3px solid #2f1c44;
padding-bottom: 10px; padding-bottom: 10px;
}*/ }*/
table { table {
max-width: 100%;
/*border: 1px solid #ff0000;*/ /*border: 1px solid #ff0000;*/
border-collapse: collapse; border-collapse: collapse;
@ -239,6 +261,7 @@ table {
} }
a{ a{
word-wrap: break-word;
text-decoration: none; text-decoration: none;
display: inline-block; display: inline-block;
color: #747ff7; color: #747ff7;