1

change wording

This commit is contained in:
2024-01-25 09:36:00 +02:00
parent 52418adf43
commit 50358bc99f
2 changed files with 40 additions and 14 deletions

View File

@@ -1,6 +1,5 @@
@use 'pure';
@use 'grids-responsive';
/* The line above should remain empty */
$darkTextColor: #ccc;
$darkTextColorStr: "ccc";
@@ -8,6 +7,7 @@ $darkBgGrey: #313131;
$blueLinkVisited: #007bff;
$grey: #666;
$lightBlue: #008ed4;
$lightBorderColor: #a3a3a3;
/************************/
/** Very Common Things **/
@@ -131,7 +131,13 @@ $featuresGutter: 1rem;
margin: 15px 0;
padding: 0 $featuresGutter;
}
}
blockquote {
border-left: 2px solid $lightBorderColor;
font-style: italic;
line-height: 1.8;
padding-left: 1.5em;
}
@function svgarrow($color) {
@@ -140,10 +146,10 @@ $featuresGutter: 1rem;
#page-index #faq {
margin: 4rem 0 8rem 0;
border-bottom: 1px solid #a3a3a3;
border-bottom: 1px solid $lightBorderColor;
> article {
border-top: 1px solid #a3a3a3;
border-top: 1px solid $lightBorderColor;
input {
display: none;
@@ -272,7 +278,11 @@ $featuresGutter: 1rem;
}
h2.brand-subtitle {
color: #ccc;
color: $darkTextColor;
}
blockquote {
border-left-color: $darkTextColor;
}
#page-index {