feat: moved the logo to the right side
fix: fixed coloring in bg on mobile Signed-off-by: limited_dev <loginakkisativ@gmail.com>
This commit is contained in:
parent
4b84ce8986
commit
c20c5c9343
5 changed files with 40 additions and 11 deletions
|
@ -40,6 +40,7 @@
|
||||||
<br/>
|
<br/>
|
||||||
<br/>
|
<br/>
|
||||||
<a href="/sys/logout">[Logout]</a>
|
<a href="/sys/logout">[Logout]</a>
|
||||||
|
|
||||||
</Authorized>
|
</Authorized>
|
||||||
<NotAuthorized>
|
<NotAuthorized>
|
||||||
<span>You are not logged in.</span>
|
<span>You are not logged in.</span>
|
||||||
|
|
|
@ -13,9 +13,13 @@
|
||||||
<article class="content px-4">
|
<article class="content px-4">
|
||||||
@Body
|
@Body
|
||||||
</article>
|
</article>
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
@code
|
@code
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -3,12 +3,12 @@
|
||||||
@inject NavigationManager navManager
|
@inject NavigationManager navManager
|
||||||
|
|
||||||
<div class="top-row ps-3 navbar navbar-dark">
|
<div class="top-row ps-3 navbar navbar-dark">
|
||||||
<div class="container-fluid">
|
|
||||||
<img src="img/static/logo_trans.png" width="32" height="32" alt="Logo"/>
|
|
||||||
<a class="navbar-brand" href="/">BulletBoard</a>
|
|
||||||
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
|
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="navbar-toggler-icon"></span>
|
||||||
</button>
|
</button>
|
||||||
|
<div class="container-fluid" id="maintitle" href="/">
|
||||||
|
<img src="img/static/logo_trans.png" width="32" height="32" alt="Logo"/>
|
||||||
|
<a class="navbar-brand" id="logo" href="/">BulletBoard</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -9,9 +9,23 @@
|
||||||
|
|
||||||
.navbar-brand {
|
.navbar-brand {
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
horiz-align: center;
|
horiz-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#maintitle {
|
||||||
|
!important;
|
||||||
|
display: flex;
|
||||||
|
justify-content: right;
|
||||||
|
padding: 5px;
|
||||||
|
flex: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logo {
|
||||||
|
!important;
|
||||||
|
padding: 6px 6px 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.oi {
|
.oi {
|
||||||
width: 2rem;
|
width: 2rem;
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
|
@ -19,7 +33,7 @@
|
||||||
top: -2px;
|
top: -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.topicTitle{
|
.topicTitle {
|
||||||
color: white;
|
color: white;
|
||||||
margin-top: 2rem;
|
margin-top: 2rem;
|
||||||
margin-left: 1.8rem;
|
margin-left: 1.8rem;
|
||||||
|
@ -75,7 +89,15 @@
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.account{
|
.account {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#maintitle {
|
||||||
|
!important;
|
||||||
|
display: flex;
|
||||||
|
justify-content: left;
|
||||||
|
padding: 5px;
|
||||||
|
flex: 50%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
|
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
|
||||||
|
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||||
|
background-color: #181223;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1:focus {
|
h1:focus {
|
||||||
|
|
Loading…
Reference in a new issue