Compare commits

...

2 Commits

Author SHA1 Message Date
Michał Rudowicz 6c3c7966ea Margin on the bottom of content
/ build_website (push) Successful in 7s Details
/ build_and_push_container (push) Successful in 7s Details
2025-02-28 21:25:03 +00:00
Michał Rudowicz 67152a9e9f Darken link color, no feature borders 2025-02-28 21:25:03 +00:00
3 changed files with 7 additions and 5 deletions

View File

@ -20,7 +20,7 @@
</head>
<body class='page {{layout.bodyClass}}'>
<div id="wrapper" class="wrapper">
<div id="wrapper" class="wrapper mb-3">
{% include header.html headerClass='header-extra' %}
{{content}}
</div>

View File

@ -1,7 +1,5 @@
.feature {
height: 100%;
border: 1px solid $white-offset;
border-radius: 3px;
padding: 20px;
background-color: #ffffff;
display: flex;

View File

@ -3,8 +3,8 @@
// Colors
$primary: #FDB515;
$primary-dark: #a01b16;
$secondary: #f88379;
$primary-dark: darken($primary, 10%);
$secondary: darken($primary, 20%);
$black: #2f2f41;
$white: #ffffff;
$white-offset: #fff6f8;
@ -119,3 +119,7 @@ body {
code {
color: #000;
}
a {
color: #dd9902;
}