friendship
This commit is contained in:
commit
e098003683
1209
public/asset/5
1209
public/asset/5
File diff suppressed because it is too large
Load Diff
|
|
@ -220,6 +220,13 @@
|
|||
}
|
||||
|
||||
html {
|
||||
animation-name: animatedbackground;
|
||||
animation-duration: 50s;
|
||||
animation-iteration-count: infinite;
|
||||
background: url('../img/animated.png');
|
||||
background-position: center bottom;
|
||||
background-repeat: repeat-x;
|
||||
background-attachment: fixed;
|
||||
margin: 0px;
|
||||
font-family: "Helvetica";
|
||||
src: url('Helvetica.ttf') format('truetype'), ;
|
||||
|
|
@ -230,13 +237,6 @@
|
|||
}
|
||||
|
||||
body {
|
||||
animation-name: animatedbackground;
|
||||
animation-duration: 50s;
|
||||
animation-iteration-count: infinite;
|
||||
background: url('../img/animated.png');
|
||||
background-position: center bottom;
|
||||
background-repeat: repeat-x;
|
||||
background-attachment: fixed;
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
margin-top: 0px;
|
||||
|
|
@ -491,7 +491,7 @@
|
|||
width: 20%;
|
||||
height: 100%;
|
||||
margin-left: 0px;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
background-color: rgba(132, 132, 132, 0.5);
|
||||
padding-bottom: 5px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
|
@ -502,7 +502,7 @@
|
|||
width: 80%;
|
||||
height: 100%;
|
||||
left: 20%;
|
||||
background-color: rgba(132, 132, 132, 0.5);
|
||||
background-color: #ffffff;
|
||||
padding-bottom: 5px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,39 @@
|
|||
<!doctype html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
|
||||
<head>
|
||||
@yield('title')
|
||||
<meta charset="utf-8">
|
||||
@yield('titlediscord')
|
||||
@yield('descdiscord')
|
||||
<meta content="https://archblox.com" property="og:url" />
|
||||
<meta content="https://archblox.com/img/MORBLOXlogo.png" property="og:image" />
|
||||
<meta content="#4b4b4b" data-react-helmet="true" name="theme-color" />
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
<link rel="apple-touch-icon" href="{{ asset('img/MORBLOX.png') }}" />
|
||||
<link rel="apple-touch-startup-image" href="{{ asset('img/MORBLOXsplash.png') }}" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
||||
<link href="{{ asset('css/app.css?id=e5Az527Gb1') }}" rel="stylesheet">
|
||||
<script src="{{ asset('js/main.js?id=z3b8JK2bff') }}"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@yield('alert')
|
||||
<div class="iphone-sidebar" style="color: #000000; background-color: #ffffff">
|
||||
<p><img src="https://archblox.com/img/MORBLOXlogo.png" width="50%"> Studio</p>
|
||||
<p>Logged in as: {{ Auth::user()->name }}</p>
|
||||
<br>
|
||||
<a style="color: blue;" href="#">My Games</a>
|
||||
<br>
|
||||
<a style="color: black;" href="#">My Assets</a>
|
||||
</div>
|
||||
<div class="iphone-content"
|
||||
style="padding-left: 5px; padding-right: 0px; overflow-x: hidden; position: fixed; height: 100%; color: #000000; background-color: #aaaaaa">
|
||||
@yield('content')
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
@ -37,7 +37,7 @@
|
|||
<h2>What is Personal Information and why do we collect it?</h2>
|
||||
<p>Personal Information is information that identifies an individual. The Personal Information we collect include your username, age and email address.
|
||||
We also store your Places, Decals, T-Shirts, Shirts, Pants, Audios, Settings, Friends and MORBUX until you delete it yourself, or we moderate it (see our Terms of Service).
|
||||
This Personal Information is obtained from our website archblox.com. We do not store your IP Address.
|
||||
This Personal Information is obtained from our website archblox.com. <a style="color: blue;" href="https://media.discordapp.net/attachments/987687460974788669/991175756602409041/unknown.png?width=1440&height=345">We do not store your IP Address.</a>
|
||||
We collect your Personal Information for the primary purpose of using the services. We may also use your Personal Information for secondary purposes closely related to the primary purpose, in circumstances where you would reasonably expect such use or disclosure.
|
||||
When we collect Personal Information, we will, where appropriate and where possible, explain to you why we are collecting the information and how we plan to use it.</p>
|
||||
<h2>What happens when your account gets terminated?</h2>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,16 @@
|
|||
@extends('layouts.ide')
|
||||
@section('title')
|
||||
<title>{{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="{{env('APP_NAME')}}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX" property="og:description" />
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<h1>My Games</h1>
|
||||
<button class="greenbutton">Create a Game</button>
|
||||
<p>You haven't made any games yet!</p>
|
||||
@endsection
|
||||
Loading…
Reference in New Issue