Skip to content

Commit 5cca5a9

Browse files
digilouconroywhitney
authored andcommitted
Theme Updates (PR #8)
Use the same look-and-feel (theme) as the WordPress site: * Use blue and whites * Add icon * Replace stock photo
1 parent 5c05d36 commit 5cca5a9

6 files changed

Lines changed: 1598 additions & 34 deletions

File tree

src/components/Footer.js

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const Footer = class extends React.Component {
1414
<div className="content has-text-centered">
1515
<img
1616
src={logo}
17-
alt="Kaldi"
17+
alt="Codi the Yeti"
1818
style={{ width: "14em", height: "10em" }}
1919
/>
2020
</div>
@@ -54,35 +54,21 @@ const Footer = class extends React.Component {
5454
</section>
5555
</div>
5656
<div className="column is-4 social">
57-
<a title="facebook" href="https://facebook.com">
57+
<a title="facebook" href="https://facebook.com/akdevalliance">
5858
<img
5959
src={facebook}
6060
alt="Facebook"
6161
style={{ width: "1em", height: "1em" }}
6262
/>
6363
</a>
64-
<a title="twitter" href="https://twitter.com">
64+
<a title="twitter" href="https://twitter.com/akdevalliance">
6565
<img
6666
className="fas fa-lg"
6767
src={twitter}
6868
alt="Twitter"
6969
style={{ width: "1em", height: "1em" }}
7070
/>
7171
</a>
72-
<a title="instagram" href="https://instagram.com">
73-
<img
74-
src={instagram}
75-
alt="Instagram"
76-
style={{ width: "1em", height: "1em" }}
77-
/>
78-
</a>
79-
<a title="vimeo" href="https://vimeo.com">
80-
<img
81-
src={vimeo}
82-
alt="Vimeo"
83-
style={{ width: "1em", height: "1em" }}
84-
/>
85-
</a>
8672
</div>
8773
</div>
8874
</div>

src/components/Navbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const Navbar = class extends React.Component {
4141
<div className="container">
4242
<div className="navbar-brand">
4343
<Link to="/" className="navbar-item" title="Logo">
44-
<img src={logo} alt="Kaldi" style={{ width: "88px" }} />
44+
<img src={logo} alt="Alaska Developers Alliance" style={{ width: "88px" }} />
4545
</Link>
4646
{/* Hamburger menu */}
4747
<div

src/components/all.sass

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
@import "~bulma/sass/utilities/initial-variables"
22

33
// Config vars
4-
// Kaldi logo brand color: #FD461E
5-
$kaldi-red: #D64000
6-
$kaldi-red-invert: #fff
4+
$akdev-blue: #2C5DC6
5+
$akdev-blue-invert: #fff
76

8-
$primary: $kaldi-red
9-
$primary-invert: $kaldi-red-invert
7+
$primary: $akdev-blue
8+
$primary-invert: $akdev-blue-invert
109
$body-color: #333
11-
$black: #2b2523
10+
$black: #222222
1211

1312
.navbar .navbar-menu
1413
box-shadow:none !important
@@ -73,9 +72,9 @@ footer.footer
7372
$menu-item-color: $white-ter
7473
$menu-item-hover-color: $black !important
7574
$menu-item-hover-background-color: $black
76-
$menu-item-active-color: $kaldi-red-invert
77-
$menu-item-active-background-color: $kaldi-red-invert
78-
$menu-list-border-left: 1px solid $kaldi-red-invert
75+
$menu-item-active-color: $akdev-blue-invert
76+
$menu-item-active-background-color: $akdev-blue-invert
77+
$menu-list-border-left: 1px solid $akdev-blue-invert
7978
$menu-label-color: $white-ter
8079

8180

0 commit comments

Comments
 (0)