Hendrik search #104
@@ -10,9 +10,12 @@
|
|||||||
margin: 0 20px 20px 0;
|
margin: 0 20px 20px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile-box .profile-username {
|
.profile-box h1.profile-username {
|
||||||
padding-top: 50px;
|
padding-top: 50px;
|
||||||
}
|
}
|
||||||
|
.profile-box h5.profile-username {
|
||||||
|
padding-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
div.posts {
|
div.posts {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
@@ -37,23 +40,18 @@ div.posts .post p.subscript {
|
|||||||
font-size: 8pt;
|
font-size: 8pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*.posts {*/
|
div.posts .post form input, div.posts .post form textarea {
|
||||||
/*z-index: -1;*/
|
width: calc(100% - 15px);
|
||||||
/*margin-right: 0;*/
|
}
|
||||||
/*width: calc(100% + 15px);*/
|
|
||||||
/*}*/
|
|
||||||
|
|
||||||
/*.post-box {*/
|
div.posts .post form input[type="submit"] {
|
||||||
/*display: inline-flex;*/
|
width: 100%;
|
||||||
/*margin: 20px 15px 0 0;*/
|
}
|
||||||
/*padding: 25px;*/
|
|
||||||
/*background-color: #FFFFFF;*/
|
|
||||||
/*}*/
|
|
||||||
|
|
||||||
/*!* fullscreen *!*/
|
div.posts .post form textarea.newpost {
|
||||||
/*.post-box {*/
|
margin: 15px 0 15px 0;
|
||||||
/*width: calc(25% - 69px);*/
|
height: 100px;
|
||||||
/*}*/
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 1500px) {
|
@media only screen and (max-width: 1500px) {
|
||||||
.post-box {
|
.post-box {
|
||||||
@@ -68,14 +66,6 @@ div.posts .post p.subscript {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.post {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.post img {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.post .post-date {
|
.post .post-date {
|
||||||
float: right;
|
float: right;
|
||||||
color: #aaaaaa;
|
color: #aaaaaa;
|
||||||
|
|||||||
@@ -4,7 +4,8 @@
|
|||||||
<div class="profile-button">
|
<div class="profile-button">
|
||||||
<p><img src="/img/add-friend.png"> Als vriend toevoegen</p>
|
<p><img src="/img/add-friend.png"> Als vriend toevoegen</p>
|
||||||
</div>
|
</div>
|
||||||
<h1 class="profile-username"><?= $user["fname"]?> <?=$user["lname"]?> (<?=$user["username"]?>)</h1>
|
<h1 class="profile-username"><?=$user["username"]?></h1>
|
||||||
|
<h5 class="profile-username"><?= $user["fname"]?> <?=$user["lname"]?></h5>
|
||||||
<p><?=$user["bio"]?></p>
|
<p><?=$user["bio"]?></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -13,7 +14,7 @@
|
|||||||
<p>
|
<p>
|
||||||
<?php
|
<?php
|
||||||
while($friend = $profile_friends->fetch()) {
|
while($friend = $profile_friends->fetch()) {
|
||||||
echo "<a href='profile/${friend["username"]}/' data-title='${friend["username"]}'><img class='profile-picture' src='${friend["profilepicture"]}' alt='${friend["username"]}'s profielfoto></a>";
|
echo "<a href='/profile/${friend["username"]}/' data-title='${friend["username"]}'><img class='profile-picture' src='${friend["profilepicture"]}' alt='${friend["username"]}'s profielfoto></a>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -29,7 +30,7 @@
|
|||||||
<p>
|
<p>
|
||||||
<?php
|
<?php
|
||||||
while($group = $profile_groups->fetch()) {
|
while($group = $profile_groups->fetch()) {
|
||||||
echo "<a href='group/${group["name"]}/' data-title='${group["name"]}'><img class='group-picture' src='${group["picture"]}' alt='${group["name"]}s logo'></a>";
|
echo "<a href='/group/${group["name"]}/' data-title='${group["name"]}'><img class='group-picture' src='${group["picture"]}' alt='${group["name"]}s logo'></a>";
|
||||||
}
|
}
|
||||||
|
|
||||||
if($profile_groups->rowCount() === 0) {
|
if($profile_groups->rowCount() === 0) {
|
||||||
@@ -41,6 +42,18 @@
|
|||||||
|
|
||||||
<div class="posts">
|
<div class="posts">
|
||||||
<?php
|
<?php
|
||||||
|
if ($_SESSION["userID"] === $userID) {
|
||||||
|
?>
|
||||||
|
<div class="post platform">
|
||||||
|
<form>
|
||||||
|
<input type="text" class="newpost" placeholder="Titel">
|
||||||
|
<textarea class="newpost">Schrijf een berichtje...</textarea>
|
||||||
|
<input type="submit" value="Plaats!">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
while($post = $posts->fetch()) {
|
while($post = $posts->fetch()) {
|
||||||
$nicetime = nicetime($post["creationdate"]);
|
$nicetime = nicetime($post["creationdate"]);
|
||||||
echo "
|
echo "
|
||||||
|
|||||||
Reference in New Issue
Block a user