favicon and bg color on main column
Before Width: | Height: | Size: 507 B After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 668 B After Width: | Height: | Size: 11 KiB |
BIN
js/public/img/icons/favicon_chapril_mobilizon.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
js/public/img/icons/original/favicon-16x16.png
Normal file
After Width: | Height: | Size: 507 B |
BIN
js/public/img/icons/original/favicon-32x32.png
Normal file
After Width: | Height: | Size: 668 B |
@ -20,7 +20,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
main > .container {
|
main > .container {
|
||||||
background: $body-background-color;
|
background: $whitest;
|
||||||
min-height: 70vh;
|
min-height: 70vh;
|
||||||
}
|
}
|
||||||
.step-content{
|
.step-content{
|
||||||
@ -46,6 +46,15 @@ main {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
> #homepage{
|
> #homepage{
|
||||||
|
background: $whitest;
|
||||||
|
#featured_events{
|
||||||
|
background: $whitest;
|
||||||
|
}
|
||||||
|
#picture{
|
||||||
|
.container, .section{
|
||||||
|
background: $whitest;
|
||||||
|
}
|
||||||
|
}
|
||||||
> .container{
|
> .container{
|
||||||
min-height: 25vh;
|
min-height: 25vh;
|
||||||
}
|
}
|
||||||
@ -97,21 +106,22 @@ $color-black: #000;
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
// background: #f7f8fa;
|
|
||||||
background: $body-background-color;
|
background: $body-background-color;
|
||||||
font-family: BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, "Segoe UI",
|
font-family: BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, "Segoe UI",
|
||||||
"Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
"Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
|
|
||||||
/*main {*/
|
|
||||||
/* margin: 1rem auto 0;*/
|
|
||||||
/*}*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#mobilizon > .container > .message {
|
#mobilizon{
|
||||||
|
> main{
|
||||||
|
background: $body-background-color;
|
||||||
|
}
|
||||||
|
> .container > .message {
|
||||||
margin: 1rem auto auto;
|
margin: 1rem auto auto;
|
||||||
.message-header {
|
.message-header {
|
||||||
button.delete {
|
button.delete {
|
||||||
background: #4a4a4a;
|
background: $chapril_grey;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -185,7 +195,7 @@ a.list-item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.columns{
|
.columns{
|
||||||
background: white;
|
background: $whitest;
|
||||||
}
|
}
|
||||||
.setting-menu-item {
|
.setting-menu-item {
|
||||||
background-color: $yellow-4;
|
background-color: $yellow-4;
|
||||||
@ -215,7 +225,7 @@ a.list-item {
|
|||||||
color: $white;
|
color: $white;
|
||||||
background: $chapril_blue_light;
|
background: $chapril_blue_light;
|
||||||
span.month {
|
span.month {
|
||||||
color: $white;
|
color: $whitest;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -225,5 +235,5 @@ footer
|
|||||||
*/
|
*/
|
||||||
footer.footer[data-v-40ab164b] span.select select{
|
footer.footer[data-v-40ab164b] span.select select{
|
||||||
background: $chapril_blue_light;
|
background: $chapril_blue_light;
|
||||||
color: #000;
|
color: $footer-text-color;
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
// chapril colors
|
// chapril colors
|
||||||
$chapril_blue: #2e5281;
|
$chapril_blue: #2e5281;
|
||||||
$chapril_blue_light: #bcd0e5;
|
$chapril_blue_light: #bcd0e5;
|
||||||
|
$white: mix( #fff,#bcd0e5);
|
||||||
|
$whitest: #fff;
|
||||||
$chapril_orange: #ff5e00;
|
$chapril_orange: #ff5e00;
|
||||||
$chapril_grey: #5f5f5f;
|
$chapril_grey: #5f5f5f;
|
||||||
// other
|
// other
|
||||||
@ -103,6 +105,7 @@ $navbar-height: 4rem;
|
|||||||
// Footer
|
// Footer
|
||||||
$footer-padding: 3rem 1.5rem 1rem;
|
$footer-padding: 3rem 1.5rem 1rem;
|
||||||
$footer-background-color: $violet-2;
|
$footer-background-color: $violet-2;
|
||||||
|
$footer-text-color: mix( #000, $violet-2);
|
||||||
|
|
||||||
$body-background-color: mix( $chapril_blue, #efeef4);
|
$body-background-color: mix( $chapril_blue, #efeef4);
|
||||||
$fullhd-enabled: false;
|
$fullhd-enabled: false;
|
||||||
|
@ -399,7 +399,7 @@ export default class Home extends Vue {
|
|||||||
@import "~bulma/sass/utilities/mixins.sass";
|
@import "~bulma/sass/utilities/mixins.sass";
|
||||||
|
|
||||||
main > div > .container {
|
main > div > .container {
|
||||||
background: $white;
|
background: $whitest;
|
||||||
padding: 1rem 1.5rem 3rem;
|
padding: 1rem 1.5rem 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -519,7 +519,6 @@ section.hero {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.container.section {
|
.container.section {
|
||||||
background: $white;
|
|
||||||
|
|
||||||
@include tablet {
|
@include tablet {
|
||||||
margin-top: -4rem;
|
margin-top: -4rem;
|
||||||
@ -537,8 +536,4 @@ section.hero {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#homepage {
|
|
||||||
background: $white;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|