Skip to content
This repository was archived by the owner on Jun 10, 2019. It is now read-only.

Commit e12619b

Browse files
mattmacneilkylemh
authored andcommitted
Removed box around landing h1. Changed hero button to lowercase. Adjusted background image size for mobile.
1 parent d6c6f1a commit e12619b

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

src/scenes/home/home.css

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,16 @@
2020
background-repeat: no-repeat;
2121
}
2222

23-
@media screen and (max-width: 599px) {
23+
@media screen and (max-width: 760px) {
2424
.backgroundImage {
25-
background-size: 600px auto;
26-
background-position: center 0;
25+
background-size: auto 50%;
26+
background-attachment: fixed;
27+
}
28+
}
29+
30+
@media screen and (max-width: 500px) {
31+
.backgroundImage {
32+
background-size: auto 75%;
2733
background-attachment: fixed;
2834
}
2935
}

src/scenes/home/landing/landing.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
color: #fff;
2121
text-shadow: black 1px 0 15px;
2222
padding: 50px 0 50px 0;
23-
background-color:rgba(47,52,72,.25);
23+
background-color:rgba(47,52,72,.05);
2424
border-radius: 1rem;
2525
}
2626

src/scenes/home/landing/landing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Landing extends Component {
1616
<div className={styles.pageHeading}>
1717
<h1>The largest community dedicated to helping military veterans and
1818
families launch software development careers.</h1>
19-
<LinkButton text="JOIN" theme="red" link="/signup" />
19+
<LinkButton text="Join" theme="red" link="/signup" />
2020
</div>
2121
<WhatWeDo />
2222
<Membership />

0 commit comments

Comments
 (0)