parent
f00afc94db
commit
23c6b9400e
@ -1,16 +1,14 @@
|
||||
<div id="big_container" [class]="themeClass">
|
||||
<app-header [isSidebarOpened]="isSidebarOpened" (toggleSidebarEE)="toggleSidebar($event)"></app-header>
|
||||
|
||||
<main>
|
||||
<router-outlet></router-outlet>
|
||||
<app-feedback></app-feedback>
|
||||
</main>
|
||||
|
||||
<app-footer></app-footer>
|
||||
<div class="container">
|
||||
<app-header [isSidebarOpened]="isSidebarOpened" (toggleSidebarEE)="toggleSidebar($event)"></app-header>
|
||||
<main>
|
||||
<router-outlet></router-outlet>
|
||||
</main>
|
||||
<app-footer></app-footer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p-toast position="bottom-center"></p-toast>
|
||||
|
||||
<p-sidebar [(visible)]="isSidebarOpened">
|
||||
<app-navigation></app-navigation>
|
||||
</p-sidebar>
|
||||
|
@ -0,0 +1,7 @@
|
||||
:host {
|
||||
header {
|
||||
.container {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
:host {
|
||||
.title {
|
||||
color: #222;
|
||||
}
|
||||
}
|
@ -1,17 +1,36 @@
|
||||
$theme-color-primary: #850003;
|
||||
$theme-color-secondary: #501016;
|
||||
$theme-color-tertiary: #ffbca4;
|
||||
|
||||
#big_container {
|
||||
&.theme-hot-covid {
|
||||
background: #ffbca4;
|
||||
color: #501016;
|
||||
background: $theme-color-tertiary;
|
||||
color: $theme-color-secondary;
|
||||
|
||||
main{
|
||||
background: $white;
|
||||
}
|
||||
h1::after {
|
||||
background-color: #850003;
|
||||
background-color: $theme-color-primary;
|
||||
}
|
||||
|
||||
.btn--primary:focus,
|
||||
.btn--primary:hover,
|
||||
.btn--primary:active,
|
||||
.btn--primary {
|
||||
background-color: #850003 !important;
|
||||
background-color: $theme-color-primary !important;
|
||||
}
|
||||
|
||||
// bulma override
|
||||
.button.is-primary, .button.btn--primary, button.is-primary, button.btn--primary, .is-primary.btn, .btn.btn--primary, .is-primary.back, .back.btn--primary{
|
||||
background-color: $theme-color-primary;
|
||||
color: $theme-color-tertiary;
|
||||
}
|
||||
// material override
|
||||
.navbar-dropdown a.navbar-item.is-active,
|
||||
a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-item.is-active, .navbar-link:focus, .navbar-link:focus-within, .navbar-link:hover, .navbar-link.is-active{
|
||||
color: $theme-color-primary;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in new issue