nav bar restyle
This commit is contained in:
parent
f484d617d0
commit
0071017fcf
@ -1 +1,2 @@
|
|||||||
|
cd..
|
||||||
dotnet publish -c Release -r android-arm64 -p:PackageFormat=Apk -f net8.0-android34.0 --sc true
|
dotnet publish -c Release -r android-arm64 -p:PackageFormat=Apk -f net8.0-android34.0 --sc true
|
||||||
@ -42,10 +42,6 @@
|
|||||||
<AndroidPackageFormat>apk</AndroidPackageFormat>
|
<AndroidPackageFormat>apk</AndroidPackageFormat>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.26100.0</TargetFrameworks>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android34.0|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android34.0|AnyCPU'">
|
||||||
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk>
|
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
@ -16,7 +16,7 @@ main {
|
|||||||
background-color: #f7f7f7;
|
background-color: #f7f7f7;
|
||||||
border-bottom: 1px solid #d6d5d5;
|
border-bottom: 1px solid #d6d5d5;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
height: 3.5rem;
|
height: 2rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,25 +1,23 @@
|
|||||||
@using RBLNews.Shared.Services
|
@using RBLNews.Shared.Services
|
||||||
|
|
||||||
@inject IFeedDataService feedDataService
|
@inject IFeedDataService feedDataService
|
||||||
|
<nav class="nav">
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<div class="top-row ps-3 navbar navbar-dark">
|
<div class="top-row ps-3 navbar navbar-dark">
|
||||||
<div class="row">
|
<h4>RBL News auf einen Blick!</h4>
|
||||||
<div class="col-12">
|
</div>
|
||||||
<h3>RBL News auf einen Blick!</h3>
|
<div class="top-row ps-3">
|
||||||
|
@if (FeedDataService.Feeds?.LastUpdate == null)
|
||||||
|
{
|
||||||
|
<text>...</text>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<text>Letztes Update @FeedDataService.Feeds?.LastUpdate.ToString("dd.MM.yyyy HH:mm")</text>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</nav>
|
||||||
</div>
|
|
||||||
<div class="container-fluid">
|
|
||||||
<div class="top-row ps-3 navbar navbar-dark">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-12">
|
|
||||||
<Icon Name="IconName.InfoCircle" class="me-2"></Icon>Letztes Update @FeedDataService.Feeds?.LastUpdate.ToString("dd.MM.yyyy HH:mm")
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@*
|
@*
|
||||||
<input type="checkbox" title="Navigation menu" class="navbar-toggler" />
|
<input type="checkbox" title="Navigation menu" class="navbar-toggler" />
|
||||||
|
|
||||||
|
|||||||
@ -16,10 +16,16 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.top-row {
|
.top-row {
|
||||||
height: 2.5rem;
|
height: 1.8rem;
|
||||||
background-color: rgba(0,0,0,0.4);
|
background-color: rgb(221, 7, 65);
|
||||||
|
color: #eee !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.top-row h1, h2, h3, h4, h5 {
|
||||||
|
color: #eee !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.navbar-brand {
|
.navbar-brand {
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
}
|
}
|
||||||
@ -47,8 +53,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.nav-item {
|
.nav-item {
|
||||||
font-size: 0.9rem;
|
font-size: 0.8rem;
|
||||||
padding-bottom: 0.5rem;
|
padding-bottom: 0.6rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-item:first-of-type {
|
.nav-item:first-of-type {
|
||||||
|
|||||||
1
RBLNews.Shared/Components/Pages/Feeds.razor.css
Normal file
1
RBLNews.Shared/Components/Pages/Feeds.razor.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
||||||
@ -1,16 +1,16 @@
|
|||||||
|
|
||||||
|
nav .container-fluid {
|
||||||
|
padding-right: 0px !important;
|
||||||
|
padding-left: 0px !important;
|
||||||
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6, h7 {
|
h1, h2, h3, h4, h5, h6, h7 {
|
||||||
color: rgb(221, 7, 65) !important;
|
color: rgb(221, 7, 65) !important;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-row {
|
.list-group-item {
|
||||||
background-color: rgb(221, 7, 65) !important;
|
font-size: 0.8rem !important;
|
||||||
color: #eee !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-row h3 {
|
|
||||||
color: #eee !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.loading {
|
.loading {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user