Compare commits

..

3 Commits

Author SHA1 Message Date
a.beging@eas-solutions.de
8262c4979b Update styles for DefaultLayout and MainLayout: change background color and remove sidebar gradient
All checks were successful
Build And Push Dev Docker Image / docker (push) Successful in 1m53s
2026-04-22 13:36:43 +02:00
a.beging@eas-solutions.de
ad9e2ae8c1 Set background color for main container and adjust styles for login and password pages 2026-04-22 13:29:25 +02:00
a.beging@eas-solutions.de
4d4648b187 Add compilation configuration for SCSS to CSS: define source and target paths 2026-04-22 13:29:06 +02:00
9 changed files with 13 additions and 9 deletions

1
.gitignore vendored
View File

@@ -18,3 +18,4 @@ FoodsharingSiegen.Server/wwwroot/css/site.min.css
FoodsharingSiegen.Server/wwwroot/css/site.css.map
FoodsharingSiegen.Server/Controls/ProspectContainer.razor.css
FoodsharingSiegen.Server/Controls/ProspectContainer.razor.css.map
FoodsharingSiegen.Server/Shared/DefaultLayout.razor.css.map

View File

@@ -17,6 +17,7 @@
}
.pc-main {
background-color: #FFF;
display: flex;
flex-direction: column;
height: 100%;

View File

@@ -6,7 +6,7 @@
<PageTitle>@AppSettings.Terms.Title - Passwort vergessen</PageTitle>
<div class="d-flex justify-content-center align-items-center" style="min-height: 100vh; background-color: #f4f6f8;">
<div class="d-flex justify-content-center align-items-center" style="min-height: 100vh;">
<div class="card shadow border-0" style="width: 100%; max-width: 420px; border-radius: 12px; margin: 1rem;">
<div class="card-body p-4 p-md-5">

View File

@@ -6,7 +6,7 @@
<PageTitle>@AppSettings.Terms.Title - Login</PageTitle>
<div class="d-flex justify-content-center align-items-center" style="min-height: 100vh; background-color: #f4f6f8;">
<div class="d-flex justify-content-center align-items-center" style="min-height: 100vh;">
<div class="card shadow border-0" style="width: 100%; max-width: 420px; border-radius: 12px; margin: 1rem;">
<div class="card-body p-4 p-md-5">

View File

@@ -6,7 +6,7 @@
<PageTitle>@AppSettings.Terms.Title - Neues Passwort setzen</PageTitle>
<div class="d-flex justify-content-center align-items-center" style="min-height: 100vh; background-color: #f4f6f8;">
<div class="d-flex justify-content-center align-items-center" style="min-height: 100vh;">
<div class="card shadow border-0" style="width: 100%; max-width: 420px; border-radius: 12px; margin: 1rem;">
<div class="card-body p-4 p-md-5">

View File

@@ -7,7 +7,7 @@ $sidebarBreakpoint: $breakpointM;
height: 100vh;
aside {
background-color: #f1e7c9;
background-color: #f0f0f0;
width: 0;
box-shadow: 5px 5px 5px #acacac;
transition: width 250ms;

View File

@@ -8,11 +8,6 @@ main {
flex: 1;
}
.sidebar {
/*background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);*/
background-color: #f1e7c9 !important;
}
.top-row {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;

View File

@@ -6,5 +6,11 @@
"Shared",
"Components",
"Controls"
],
"Compilations" : [
{
"Source": "wwwroot/css/site.scss",
"Target": "wwwroot/css/site.css"
}
]
}

View File

@@ -4,6 +4,7 @@
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: #f5ffed !important;
}
h1:focus {