Update styleguide.blade.php

This commit is contained in:
Thomas G 2022-07-23 00:58:20 +10:00
parent 793602745e
commit 17cb5f3075
1 changed files with 85 additions and 41 deletions

View File

@ -1,51 +1,95 @@
@extends('layouts.app') @extends('layouts.app')
@section('title') @section('title')
<title>StyleGuide - {{ env('APP_NAME') }}</title> <title>StyleGuide - {{ env('APP_NAME') }}</title>
@endsection @endsection
@section('content') @section('content')
<h1 id="usernameframe">StyleGuide</h1> <h1 id="usernameframe">StyleGuide</h1>
<p>This is a page explaining and showing how (most) of the CSS works for this site.</p> <p>This is a page explaining and showing how (most) of the CSS works for this site.</p>
<br> <br>
<h4>Buttons</h4> <h4>Buttons</h4>
<p>Buttons.. Don't you like them? They're used for most things that you need to click that aren't links. These look similar to tabs, but buttons are round and have more variants.</p> <p>Buttons.. Don't you like them? They're used for most things that you need to click that aren't links. These look
<br> similar to tabs, but buttons are round and have more variants.</p>
<button class="greenbutton">.greenbutton</button> <br>
<button class="bluebutton">.bluebutton</button> <button class="greenbutton">.greenbutton</button>
<button class="redbutton">.redbutton</button> <button class="bluebutton">.bluebutton</button>
<button class="greybutton">.greybutton</button> <button class="redbutton">.redbutton</button>
<br> <button class="greybutton">.greybutton</button>
<br> <textarea style="resize: none" readonly>
<h4>Tabs</h4> <pre>
<p>These are used on pages that have sub-pages. These look similar to buttons, but tabs are not round.</p> <button class="greenbutton">.greenbutton</button>
<br> <button class="bluebutton">.bluebutton</button>
<a href="#" class="tab_selected">.tab_selected</a> <button class="redbutton">.redbutton</button>
<a href="#" class="tab">.tab</a> <button class="greybutton">.greybutton</button>
<br> </pre>
<br> </textarea>
<h4>content_special</h4> <br>
<p>A div that is used for organising contents using display: inline-flex.</p> <br>
<br> <h4>Tabs</h4>
<div class="content_special"> <p>These are used on pages that have sub-pages. These look similar to buttons, but tabs are not round.</p>
<br>
<a href="#" class="tab_selected">.tab_selected</a>
<a href="#" class="tab">.tab</a>
<textarea style="resize: none" readonly>
<pre>
<a href="#" class="tab_selected">.tab_selected</a>
<a href="#" class="tab">.tab</a>
</pre>
</textarea>
<br>
<br>
<h4>content_special</h4>
<p>A div that is used for organising contents using display: inline-flex.</p>
<br>
<div class="content_special">
<p>Hello i'm some text in the .content_special/#content_special div</p>
</div>
<textarea style="resize: none" readonly>
<pre>
<div class="content_special">
<p>Hello i'm some text in the .content_special/#content_special div</p> <p>Hello i'm some text in the .content_special/#content_special div</p>
</div> </div>
<br> </pre>
<br> </textarea>
<h4>Feed, FeedContainer, FeedContainerBox, FeedContainerBoxImageContainer, FeedContainerBoxTextContainer, FeedContainerBox1Username, FeedContainerBox1Text, FeedContainerBox1Timestamp</h4> <br>
<p>The boxes containing the content of My Feed.</p> <br>
<div id="Feed"> <h4>Feed, FeedContainer, FeedContainerBox, FeedContainerBoxImageContainer, FeedContainerBoxTextContainer,
<p>#Feed</p> FeedContainerBox1Username, FeedContainerBox1Text, FeedContainerBox1Timestamp</h4>
<div id="FeedContainer"> <p>The boxes containing the content of My Feed.</p>
<div class="FeedContainerBox"> <div id="Feed">
<div class="FeedContainerBoxImageContainer"> <p>#Feed</p>
<a href="#"><img alt="Profile Image" src="{{ asset('img/defaultrender.png') }}" width="60px" height="100%"></a> <div id="FeedContainer">
</div> <div class="FeedContainerBox">
<div class="FeedContainerBoxTextContainer"> <div class="FeedContainerBoxImageContainer">
<a id="FeedContainerBox1Username">#FeedContainerBox1Username</a> <a href="#"><img alt="Profile Image" src="{{ asset('img/defaultrender.png') }}" width="60px"
<p id="FeedContainerBox1Text" style="word-wrap:break-word;max-width:400px">#FeedContainerBox1Text</p> height="100%"></a>
<p id="FeedContainerBox1Timestamp">#FeedContainerBox1Timestamp</p> </div>
</div> <div class="FeedContainerBoxTextContainer">
<a id="FeedContainerBox1Username">#FeedContainerBox1Username</a>
<p id="FeedContainerBox1Text" style="word-wrap:break-word;max-width:400px">#FeedContainerBox1Text</p>
<p id="FeedContainerBox1Timestamp">#FeedContainerBox1Timestamp</p>
</div> </div>
</div> </div>
</div> </div>
@endsection </div>
<textarea style="resize: none" readonly>
<pre>
<div id="Feed">
<p>#Feed</p>
<div id="FeedContainer">
<div class="FeedContainerBox">
<div class="FeedContainerBoxImageContainer">
<a href="#"><img alt="Profile Image" src="{{ asset('img/defaultrender.png') }}" width="60px"
height="100%"></a>
</div>
<div class="FeedContainerBoxTextContainer">
<a id="FeedContainerBox1Username">#FeedContainerBox1Username</a>
<p id="FeedContainerBox1Text" style="word-wrap:break-word;max-width:400px">#FeedContainerBox1Text</p>
<p id="FeedContainerBox1Timestamp">#FeedContainerBox1Timestamp</p>
</div>
</div>
</div>
</div>
</pre>
</textarea>
@endsection