Compare commits

..

No commits in common. "6c3c7966eacaa30cce2230023c16f838756260b1" and "0d8bdaa3208caa56cf78015b7a1aca724dea8d9c" have entirely different histories.

3 changed files with 5 additions and 7 deletions

View File

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

View File

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

View File

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