-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update website styling and add Google site verification (#408)
- Loading branch information
Showing
7 changed files
with
51 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<img src="/assets/images/[email protected]" alt="Picnic Logo" id="logo" /> | ||
<img src="/assets/images/[email protected]" alt="Picnic Logo" id="logo"/> | ||
|
||
<p align="center"> | ||
<p> | ||
Copyright © 2017-2022 Picnic Technologies BV | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
footer > img#logo { | ||
// Add support for external anchor icons. | ||
.external > svg { | ||
width: 1rem; | ||
vertical-align: text-bottom; | ||
} | ||
|
||
.label { | ||
// Reduce spacing between labels and align with surrounding elements. | ||
margin-left: 0 !important; | ||
} | ||
|
||
footer { | ||
text-align: center; | ||
|
||
img#logo { | ||
width: 2rem; | ||
margin: 0 auto; | ||
display: block; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
// Overrides for Just the Docs. See | ||
// https://github.com/just-the-docs/just-the-docs/blob/main/_sass/support/_variables.scss. | ||
|
||
// Grid system. | ||
$nav-width: 400px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
@import "./color_schemes/dark"; | ||
@import "_variables"; | ||
@import "_common"; | ||
|
||
// Swap `$blue-000` and `$blue-300`, mainly for callouts. This is done by | ||
// default for red, but not for other colors. | ||
$blue-000: #183385; | ||
$blue-300: #2c84fa; | ||
|
||
// Use light-theme greys in dark theme so that summary callouts stand out more. | ||
// (Note that the former has four shades, while the latter has five.) | ||
$grey-dk-000: $grey-lt-000; | ||
$grey-dk-100: $grey-lt-100; | ||
$grey-dk-200: $grey-lt-200; | ||
$grey-dk-250: $grey-lt-200; | ||
$grey-dk-300: $grey-lt-300; |