add popup welcome on first visit

This commit is contained in:
axolotle
2021-07-02 19:41:29 +02:00
parent ad8575b7c9
commit fa83b7ca41
7 changed files with 129 additions and 33 deletions
+9 -1
View File
@@ -86,6 +86,7 @@ $font-family-sans-serif: 'Noto Sans';
$font-family-text: 'Redaction'; // custom
$font-size-base: 1rem;
$font-size-base-em: 1em;
$font-size-sm: $font-size-base * .9;
$line-height-base: 1.5;
@@ -95,6 +96,13 @@ $line-height-sm: $line-height-base;
// Headings
$headings-font-weight: 700;
$headings-line-height: $line-height-base;
$h1-font-size: $font-size-base-em * 2.5;
$h2-font-size: $font-size-base-em * 2;
$h3-font-size: $font-size-base-em * 1.75;
$h4-font-size: $font-size-base-em * 1.5;
$h5-font-size: $font-size-base-em * 1.25;
$h6-font-size: $font-size-base-em;
// Buttons
$input-btn-padding-y: 0;
$input-btn-padding-x: .5rem;
@@ -161,7 +169,7 @@ $popover-arrow-outer-color: null;
// HEADER
$header-spacer-sm: 18px;
$header-spacer: 35px;
$header-spacer: 30px;
$header-height: 86px;
// NODEVIEW
@@ -52,6 +52,6 @@ a:hover {
@if $color == 'depart' {
@include text-emphasis-variant(".text-#{$color}", $black, true);
} @else {
@include text-emphasis-variant(".text-#{$color}", darken($value, 30%), true);
@include text-emphasis-variant(".text-#{$color}", darken($value, 15%), true);
}
}