1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 21:24:18 +00:00

nouvelle charte graphique

This commit is contained in:
Maxime Moraine 2021-02-09 17:49:44 +01:00
parent e7546ce4c6
commit 63fb1d4ca5
11 changed files with 90 additions and 44 deletions

View file

@ -1,9 +1,10 @@
// .v-main {
// background-color: $color-background;
// }
// .theme--light.v-navigation-drawer {
// background-color: darken($color-background, 0);
// }
main.content {
padding: 0 3rem;
@media screen and (max-width: $breakpointMD) {
padding: 0;
}
}
.column-count-2 {
column-count: 2;
@ -17,3 +18,35 @@
column-count: 4;
margin-bottom: 12px;
}
* {
::-webkit-scrollbar {
height: 12px;
width: 7px;
background: darken($color-background, 50);
}
scrollbar-color: $color-gold darken($color-background, 50);
scrollbar-width: thin;
::-webkit-scrollbar-thumb {
background: $color-gold;
border: 1px solid $color-gold-light;
&:hover {
background: $color-gold-light;
}
}
::-webkit-scrollbar-corner {
background: #000;
}
}
.theme--light {
.v-main {
background-color: lighten($color-background, 5);
}
.v-navigation-drawer {
background-color: darken($color-background, 0);
}
}