updated css,home,join,admin

This commit is contained in:
Thomas G 2022-07-13 21:38:10 +10:00
parent 790016bb4c
commit 245bbf76aa
4 changed files with 8 additions and 8 deletions

View File

@ -477,22 +477,22 @@
.iphone-sidebar {
position: fixed;
color: black;
color: rgb(255, 255, 255);
width: 20%;
height: 100%;
margin-left: 0px;
background-color: rgb(132, 132, 132);
background-color: rgb(0,0,0);
padding-bottom: 5px;
padding-top: 5px;
}
.iphone-content {
position: relative;
color: black;
color: white;
width: 80%;
height: 100%;
left: 20%;
background-color: rgb(132, 132, 132);
background-color: rgb(200,200,200);
padding-bottom: 5px;
padding-top: 5px;
}

View File

@ -14,6 +14,8 @@ if (Auth::check()) {
} else {
$randName = mt_rand(1, 9999);
$username = "Guest " . $randName;
// $username = " ";
// $id = 0);
$id = mt_rand(9999, 999999);
}
$ip = addslashes($_GET["ip"]);
@ -24,8 +26,6 @@ $app = 'test';
ob_start();
@endphp
--This is a joinscript that works in 2013 and back, etc.
-- functions --------------------------
function onPlayerAdded(player)
-- override

View File

@ -18,7 +18,7 @@
<br>
<p style="display: flex;">
<input id="FeedBox" type="text" placeholder="Say something..." style="width: 80%;">
<button style="width: 20%;height: 28px;" class="greybutton" id="FeedButton">Post it!</button>
<button style="width: 20%;height: 28px;margin-left: 10px;" class="greybutton" id="FeedButton">Post it!</button>
</p>
<br>
<div id="FeedContainer">

View File

@ -35,7 +35,7 @@
<a href="{{ route('home') }}"><span style="font-size:20px"></span> Return to Main Site</a>
</div>
<div class="iphone-content"
style="padding-left: 5px; padding-right: 0px; overflow-x: hidden; position: fixed; height: 100%; color: #ececec;">
style="padding-left: 5px; padding-right: 0px; overflow-x: hidden; position: fixed; height: 100%; color: black;">
@yield('content')
</div>
</body>