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

Commit 1fe04c5

Browse files
alexspencerickr
authored andcommitted
Various styling fixes. Fixes #119, #128, #119, #108
1 parent 13e5cbc commit 1fe04c5

15 files changed

Lines changed: 32 additions & 49 deletions

File tree

src/images/General-Flag.jpg

-553 KB
Loading
-189 KB
Binary file not shown.
44.7 KB
Loading

src/index.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,21 @@ h1, h2, h3, h4, h5, h6, a, button {
2222
font-family: 'PF Din Display'
2323
}
2424

25+
*, *:before, *:after {
26+
box-sizing: inherit;
27+
}
28+
2529
h1, h2, h3, h4, h5, h6 {
2630
-webkit-margin-before: 0;
2731
-webkit-margin-after: 0;
32+
margin:0;
33+
padding:0;
2834
}
2935

3036
/*16px*/
3137
body {
3238
font-size: 1rem;
39+
line-height: 1.5;
3340
}
3441

3542
/*40px*/

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import React from 'react';
22
import ReactDOM from 'react-dom';
33
import 'font-awesome/css/font-awesome.css';
44
import App from './App';
5-
import './normalize.global.css';
5+
import './shared/styles/normalize.global.css';
6+
import './shared/styles/react-table.global.css';
67
import './index.css';
7-
import './index.global.css';
88

99
ReactDOM.render(
1010
<App />,

src/scenes/home/landing/membership/membership.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Membership extends Component {
3131
<img className={styles.icon} src={roadIcon} alt="" />
3232
<span>
3333
Find new opportunities in the tech industry through our
34-
<b>scholarship program.</b> Attend <b>software development conferences</b>
34+
<b> scholarship program.</b> Attend <b>software development conferences</b>
3535
and <b>coding bootcamps</b>, and build the skills of the future.
3636
</span>
3737
</li>
@@ -40,15 +40,15 @@ class Membership extends Component {
4040
<span>
4141
Jumpstart your journey. Access our <b>mentorship</b> and coding
4242
channels, and learn from <b>senior software engineers</b> at
43-
<b>top-tier tech companies</b> with years of experience.
43+
<b> top-tier tech companies</b> with years of experience.
4444
</span>
4545
</li>
4646
<li>
4747
<img className={styles.icon} src={suitcaseIcon} alt="" />
4848
<span>
4949
Launch your career in the tech industry on our <b>job board</b>.
5050
Find <b>local and remote jobs</b> all across the country.
51-
<b>Get expert feedback</b> on your portfolio, side project, or resume.
51+
<b> Get expert feedback</b> on your portfolio, side project, or resume.
5252
</span>
5353
</li>
5454
</ul>

src/shared/components/clipPathImage/clipPathImage.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
bottom: 70px;
1919
text-align: center;
2020
display:block;
21-
font-size:18px;
21+
font-size:16px;
2222
}
2323

2424
.blue {
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.donateSection {
22
background-image: url('images/General-Flag.jpg');
3-
min-height:300px;
43
}
54

65
.donate {
@@ -11,7 +10,7 @@
1110
}
1211

1312
.donate p {
14-
max-width:500px;
15-
font-size:16px;
16-
color:#FFF;
13+
max-width:700px;
14+
font-size:20px;
15+
color:#fff;
1716
}

src/shared/components/imageCard/imageCard.css

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
width: 300px;
2020
justify-content: space-around;
2121
align-items: center;
22-
height: 100%;
2322
min-height: 200px;
2423
background-color: #FFF;
2524
}
@@ -29,16 +28,16 @@
2928
min-height: 200px;
3029
display: flex;
3130
flex-direction: column;
32-
justify-content: space-around;
31+
justify-content: center;
3332
align-items: center;
3433
}
3534

3635
.cardText h2 {
37-
align-self: flex-start;
36+
align-self: center;
3837
}
3938

4039
.cardText p {
41-
align-self: flex-start;
40+
align-self: center;
4241
margin: 0;
4342
padding: 0;
4443
font-size:14px;

src/shared/components/imageCard/imageCard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class ImageCard extends Component {
1010
<img className={styles.image} src={this.props.image} alt={this.props.title} />
1111
<div className={styles.cardContainer}>
1212
<div className={styles.cardText}>
13-
<h2>{this.props.title}:</h2>
13+
<h2>{this.props.title}</h2>
1414
<p>{this.props.cardText}</p>
1515
{this.props.link && <LinkButton text={this.props.buttonText} link={this.props.link} />}
1616
</div>

0 commit comments

Comments
 (0)