arkot icon

This commit is contained in:
Thomas G 2022-08-08 02:43:22 +10:00
parent 9be496f633
commit d21a4ec239
6 changed files with 49 additions and 14 deletions

View File

@ -22,18 +22,44 @@
}
}
.catalogitem, .catalogitem img {
.catalogitem, .catalogitemimage {
width: 126px;
padding: 5px;
}
.arkoticon_small {
margin: 0px;
width: 12px;
}
.arkoticon_navbar {
margin: 0px;
margin-right: 3px;
width: 20px;
}
.arkotcontainer {
position: relative;
padding-right: 10px;
margin-right: 0%;
margin-left: auto;
top: 11px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: center;
}
.smallnavbarbuttoncontainer {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: flex-end;
align-items: center;
}
.arkotlabel {
color: rgb(35, 98, 222);
font-weight: bold;
@ -90,13 +116,11 @@
@media (max-width: 970px) {
.navbarbuttoncontainer a {
font-size: 14px;
top: 10px
}
}
@media (max-width: 640px) {
.navbarbuttoncontainer a {
font-size: 12px;
top: 10px
}
}
@ -132,6 +156,7 @@
height: 40px;
margin: 0px;
padding-right: 5px;
align-content: center;
padding-left: 5px;
padding-top: 2px;
position: fixed;
@ -149,11 +174,15 @@
}
.navbarbuttoncontainer,
.smallnavbarbuttoncontainer,
.navbarlogincontainer {
padding-left: 5px;
display: table-cell;
vertical-align: middle;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: center;
}
#navbarlogincontainer,
@ -162,7 +191,12 @@
padding-right: 10px;
margin-right: 0%;
margin-left: 0%;
top: 11px;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-content: center;
justify-content: flex-end;
align-items: center;
}
#profilefriendscontainer p,
@ -266,13 +300,14 @@
.navbarbutton {
position: relative;
top: 10px;
padding-right: 5px;
text-align: center;
font-size: 18px;
}
.smallnavbarbutton {
position: relative;
padding-right: 5px;
text-align: center;
font-size: 15px;
}
@ -287,15 +322,15 @@
top: 43px;
padding-top: 2px;
padding-bottom: 2px;
display: inline-table;
display: inline-flex;
vertical-align: middle;
width: 100%;
line-height: normal;
color: rgb(255, 255, 255);
text-size-adjust: auto;
text-align: left;
background: #000000;;
background: linear-gradient(#303030 10%, #000000 100%);;
background: #000000;
background: linear-gradient(#303030 10%, #000000 100%);
}
.invisible,

BIN
public/img/ark2018.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

BIN
public/img/ark2018nb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -53,7 +53,7 @@
<p><a href="{{ route('register') }}">Sign Up</a> or <a href="{{ route('login') }}">Log In</a></p>
</div>
@else
<p class="arkotcontainer">ARK$ {{ Auth::user()->morbux }}</p>
<div class="arkotcontainer"><img class="arkoticon_navbar" src="{{ asset('img/arkot.png') }}"><p> {{ Auth::user()->morbux }}</p></div>
<div id="navbarsignedincontainer">
<p class="nonbolded" id="navbarusername">{{ Auth::user()->name }} | <a href="{{ route('logout') }}"
onclick="event.preventDefault();

View File

@ -13,9 +13,9 @@
<h1>Catalog</h1>
<div class="content_special" style="flex-wrap: wrap">
<div class="catalogitem">
<img src="{{ asset('img/reviewpending.png') }}">
<img class="catalogitemimage" src="{{ asset('img/reviewpending.png') }}">
<p>Item Name</p>
<p class="arkotlabel">ARK$</p><p>10</p>
<strong><img class="arkoticon_small" src="{{ asset('img/arkot.png') }}">10</strong>
</div>
</div>
@endsection