updated css,home,join,admin
This commit is contained in:
parent
790016bb4c
commit
245bbf76aa
|
|
@ -477,22 +477,22 @@
|
||||||
|
|
||||||
.iphone-sidebar {
|
.iphone-sidebar {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
color: black;
|
color: rgb(255, 255, 255);
|
||||||
width: 20%;
|
width: 20%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
background-color: rgb(132, 132, 132);
|
background-color: rgb(0,0,0);
|
||||||
padding-bottom: 5px;
|
padding-bottom: 5px;
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.iphone-content {
|
.iphone-content {
|
||||||
position: relative;
|
position: relative;
|
||||||
color: black;
|
color: white;
|
||||||
width: 80%;
|
width: 80%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
left: 20%;
|
left: 20%;
|
||||||
background-color: rgb(132, 132, 132);
|
background-color: rgb(200,200,200);
|
||||||
padding-bottom: 5px;
|
padding-bottom: 5px;
|
||||||
padding-top: 5px;
|
padding-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,8 @@ if (Auth::check()) {
|
||||||
} else {
|
} else {
|
||||||
$randName = mt_rand(1, 9999);
|
$randName = mt_rand(1, 9999);
|
||||||
$username = "Guest " . $randName;
|
$username = "Guest " . $randName;
|
||||||
|
// $username = " ";
|
||||||
|
// $id = 0);
|
||||||
$id = mt_rand(9999, 999999);
|
$id = mt_rand(9999, 999999);
|
||||||
}
|
}
|
||||||
$ip = addslashes($_GET["ip"]);
|
$ip = addslashes($_GET["ip"]);
|
||||||
|
|
@ -24,8 +26,6 @@ $app = 'test';
|
||||||
ob_start();
|
ob_start();
|
||||||
@endphp
|
@endphp
|
||||||
|
|
||||||
--This is a joinscript that works in 2013 and back, etc.
|
|
||||||
|
|
||||||
-- functions --------------------------
|
-- functions --------------------------
|
||||||
function onPlayerAdded(player)
|
function onPlayerAdded(player)
|
||||||
-- override
|
-- override
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
<br>
|
<br>
|
||||||
<p style="display: flex;">
|
<p style="display: flex;">
|
||||||
<input id="FeedBox" type="text" placeholder="Say something..." style="width: 80%;">
|
<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>
|
</p>
|
||||||
<br>
|
<br>
|
||||||
<div id="FeedContainer">
|
<div id="FeedContainer">
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<a href="{{ route('home') }}"><span style="font-size:20px">←</span> Return to Main Site</a>
|
<a href="{{ route('home') }}"><span style="font-size:20px">←</span> Return to Main Site</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="iphone-content"
|
<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')
|
@yield('content')
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue