taskbar
|
@ -16,8 +16,8 @@
|
|||
|
||||
/*noinspection CssInvalidAtRule*/
|
||||
@theme {
|
||||
--font-sans: Figtree, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
|
||||
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
||||
--font-sans: Figtree, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
||||
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -38,15 +38,18 @@ @layer base {
|
|||
}
|
||||
|
||||
html {
|
||||
background-image: url("../images/set/bflyBRDR.gif");
|
||||
background-repeat: repeat-y;
|
||||
background-image: url("../images/bg.jpg");
|
||||
background-size: cover;
|
||||
background-color: #e1c0b9;
|
||||
}
|
||||
|
||||
body {
|
||||
margin-left: 175px;
|
||||
margin-left: 20px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
@layer components {
|
||||
.button {
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
|
|
BIN
resources/images/bg.jpg
Normal file
After Width: | Height: | Size: 888 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 5 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 25 KiB |
|
@ -1,5 +0,0 @@
|
|||
<img
|
||||
src="{{ Vite::asset('resources/images/set/bflyBUT1.gif') }}"
|
||||
alt="Home"
|
||||
{{ $attributes }}
|
||||
/>
|
|
@ -2,9 +2,11 @@
|
|||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
@include('layouts.head')
|
||||
|
||||
<body class="max-w-[600px]">
|
||||
@include('layouts.navigation')
|
||||
|
||||
<body>
|
||||
<main class="max-w-[600px]">
|
||||
{{ $slot }}
|
||||
|
||||
@include('layouts.navigation')
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,33 +1,49 @@
|
|||
<nav>
|
||||
<!-- Primary Navigation Menu -->
|
||||
<div>
|
||||
<!-- Logo -->
|
||||
<a href="/" class="no-underline">
|
||||
<x-home-btn />
|
||||
</a>
|
||||
{{-- <nav> --}}
|
||||
{{-- <!-- Primary Navigation Menu --> --}}
|
||||
{{-- <div> --}}
|
||||
{{-- <!-- Logo --> --}}
|
||||
{{-- <a href="/" class="button">Home</a> --}}
|
||||
|
||||
<div class="py-2">
|
||||
@auth
|
||||
<a class="button" href="{{ route('admin') }}">Admin</a>
|
||||
{{-- <div class="py-2"> --}}
|
||||
{{-- @auth --}}
|
||||
{{-- <a class="button" href="{{ route('admin') }}">Admin</a> --}}
|
||||
|
||||
<!-- Profile -->
|
||||
<a class="button" href="{{ route('profile.edit') }}">
|
||||
{{ Auth::user()->name }}
|
||||
</a>
|
||||
{{-- <!-- Profile --> --}}
|
||||
{{-- <a class="button" href="{{ route('profile.edit') }}"> --}}
|
||||
{{-- {{ Auth::user()->name }} --}}
|
||||
{{-- </a> --}}
|
||||
|
||||
<!-- Log Out -->
|
||||
<form
|
||||
class="inline-block"
|
||||
method="POST"
|
||||
action="{{ route('logout') }}"
|
||||
{{-- <!-- Log Out --> --}}
|
||||
{{-- <form --}}
|
||||
{{-- class="inline-block" --}}
|
||||
{{-- method="POST" --}}
|
||||
{{-- action="{{ route('logout') }}" --}}
|
||||
{{-- > --}}
|
||||
{{-- @csrf --}}
|
||||
|
||||
{{-- <button>Log Out</button> --}}
|
||||
{{-- </form> --}}
|
||||
{{-- @else --}}
|
||||
{{-- <a href="{{ route('login') }}">Login</a> --}}
|
||||
{{-- @endauth --}}
|
||||
{{-- </div> --}}
|
||||
{{-- </div> --}}
|
||||
{{-- </nav> --}}
|
||||
<nav
|
||||
class="window fixed bottom-0 left-0 box-border flex h-[30px] w-screen justify-between"
|
||||
>
|
||||
@csrf
|
||||
<button class="min-w-0 p-1 text-[12px] leading-0 font-bold">
|
||||
<img
|
||||
src="{{ Vite::asset('resources/images/logo.svg') }}"
|
||||
alt="Windows Logo"
|
||||
class="relative top-[1px] w-4"
|
||||
/>
|
||||
Start
|
||||
</button>
|
||||
|
||||
<button>Log Out</button>
|
||||
</form>
|
||||
@else
|
||||
<a href="{{ route('login') }}">Login</a>
|
||||
@endauth
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="status-bar-field max-w-fit px-2 leading-[20px]"
|
||||
x-data
|
||||
x-text="new Date().toLocaleTimeString(undefined, { timeStyle: 'short' })"
|
||||
></div>
|
||||
</nav>
|
||||
|
|