Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.

Commit 19ca7fb

Browse files
author
dpatanin
committed
adjust color scheme
1 parent dcc1e7c commit 19ca7fb

13 files changed

Lines changed: 32 additions & 19 deletions

File tree

gatsby-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = {
88

99
siteMetadata: {
1010
title: `secureCodeBox`,
11-
company: 'iteratec',
11+
company: `iteratec GmbH`,
1212
description: '',
1313
// siteUrl: '',
1414
contact: {

src/components/Footer.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const Footer = props => (
2222
{' '}
2323
{new Date().getFullYear()}
2424
{' '}
25-
{props.data.site.siteMetadata.title}
25+
{props.data.site.siteMetadata.company}
2626
</li>
2727
</ul>
2828
</div>
@@ -39,6 +39,7 @@ export default props => (
3939
site {
4040
siteMetadata {
4141
title
42+
company
4243
}
4344
}
4445
}

src/components/Header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Link } from 'gatsby';
33
import Menu from './Menu';
44
import Hamburger from './Hamburger';
55
import logo from '../images/Logo Color.svg';
6-
import logoMobile from '../images/Logo Color.svg';
6+
import logoMobile from '../../static/Favicon@1x.svg';
77
import MenuMobile from './MenuMobile';
88

99
class Header extends React.Component {

src/data/features.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
{
2121
"title": "Scans behind the firewall",
22-
"description": "Our Scans can dig deeply in your Network",
22+
"description": "Our Scans can dig deeply into your Network",
2323
"image": "/features/firewall.svg",
2424
"tag": "provision"
2525
}

src/pages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const Home = (props) => {
2626
</div>
2727
</div>
2828

29-
<div className="container pt-5 pb-2 pt-md-7 pb-md-3">
29+
<div className="container pt-3 pb-2 pt-md-3 pb-md-3">
3030
<div className="row justify-content-center">
3131
<div className="col-12">
3232
<h2 className="title-3 text-dark mb-4">What the secureCodeBox provides</h2>

src/scss/_bootstrap-variables.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ $grid-gutter-width: 20px;
2020
$white: #ffffff;
2121
$black: #000000;
2222
$primary: #1c3ed3;
23+
$iteragenta: #A9218E;
24+
$secureCodeBlue: #3296DC;
2325
$secondary: #414156;
2426

2527
// Links

src/scss/components/_feature.scss

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,22 @@
4848
tr {
4949
th{
5050
color: $secondary;
51+
border-right: 1px solid $primary;
52+
}
53+
th:last-child {
54+
border-right: none;
5155
}
5256
}
5357
}
5458
tbody {
5559
tr {
5660
td {
5761
color: $secondary;
58-
font-size: 0.75rem;
62+
font-size: 0.8rem;
63+
border-right: 1px solid $primary;
64+
}
65+
td:last-child {
66+
border-right: none;
5967
}
6068
}
6169
}

src/scss/components/_footer.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.footer-strip {
2-
background: $secondary;
2+
background: $secureCodeBlue;
33
padding-top: 20px;
44
padding-bottom: 20px;
55
}

src/scss/components/_hamburger.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
.hamburger-inner,
2020
.hamburger-inner::before,
2121
.hamburger-inner::after {
22-
background: $primary;
22+
background: $iteragenta;
2323
}
2424
.hamburger-inner::after {
2525
width: 18px;

src/scss/components/_header.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.header {
22
height: 50px;
3-
color: $primary;
4-
background-color: #ffffff;
3+
color: $white;
4+
background-color: $secureCodeBlue;
55
display: flex;
66
justify-content: space-between;
77
align-items: center;

0 commit comments

Comments
 (0)