favicon and bg color on main column

This commit is contained in:
tykayn 2020-12-06 15:54:47 +01:00 committed by Baptiste Lemoine
parent 529b7d48de
commit c9fc73ddbf
8 changed files with 27 additions and 19 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 507 B

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 668 B

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 507 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 668 B

View File

@ -20,7 +20,7 @@
}
main > .container {
background: $body-background-color;
background: $whitest;
min-height: 70vh;
}
.step-content{
@ -46,6 +46,15 @@ main {
}
}
> #homepage{
background: $whitest;
#featured_events{
background: $whitest;
}
#picture{
.container, .section{
background: $whitest;
}
}
> .container{
min-height: 25vh;
}
@ -97,21 +106,22 @@ $color-black: #000;
}
body {
// background: #f7f8fa;
background: $body-background-color;
font-family: BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, "Segoe UI",
"Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
/*main {*/
/* margin: 1rem auto 0;*/
/*}*/
}
#mobilizon > .container > .message {
margin: 1rem auto auto;
.message-header {
button.delete {
background: #4a4a4a;
#mobilizon{
> main{
background: $body-background-color;
}
> .container > .message {
margin: 1rem auto auto;
.message-header {
button.delete {
background: $chapril_grey;
}
}
}
}
@ -185,7 +195,7 @@ a.list-item {
}
.columns{
background: white;
background: $whitest;
}
.setting-menu-item {
background-color: $yellow-4;
@ -215,7 +225,7 @@ a.list-item {
color: $white;
background: $chapril_blue_light;
span.month {
color: $white;
color: $whitest;
}
}
@ -225,5 +235,5 @@ footer
*/
footer.footer[data-v-40ab164b] span.select select{
background: $chapril_blue_light;
color: #000;
color: $footer-text-color;
}

View File

@ -4,6 +4,8 @@
// chapril colors
$chapril_blue: #2e5281;
$chapril_blue_light: #bcd0e5;
$white: mix( #fff,#bcd0e5);
$whitest: #fff;
$chapril_orange: #ff5e00;
$chapril_grey: #5f5f5f;
// other
@ -103,6 +105,7 @@ $navbar-height: 4rem;
// Footer
$footer-padding: 3rem 1.5rem 1rem;
$footer-background-color: $violet-2;
$footer-text-color: mix( #000, $violet-2);
$body-background-color: mix( $chapril_blue, #efeef4);
$fullhd-enabled: false;

View File

@ -399,7 +399,7 @@ export default class Home extends Vue {
@import "~bulma/sass/utilities/mixins.sass";
main > div > .container {
background: $white;
background: $whitest;
padding: 1rem 1.5rem 3rem;
}
@ -519,7 +519,6 @@ section.hero {
}
.container.section {
background: $white;
@include tablet {
margin-top: -4rem;
@ -537,8 +536,4 @@ section.hero {
}
}
}
#homepage {
background: $white;
}
</style>