Skip to content

Commit 2fd5903

Browse files
committed
Add back index, update some styling.
1 parent 6b87a2d commit 2fd5903

File tree

3 files changed

+42
-4
lines changed

3 files changed

+42
-4
lines changed

config/paths.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ if (isInCreateReactAppSource) {
4747
// after eject: we're in ./config/
4848
module.exports = {
4949
appBuild: resolveApp('build'),
50-
appHtml: resolveApp('index.html'),
50+
appHtml: resolveApp('public/index.html'),
5151
appPackageJson: resolveApp('package.json'),
5252
appSrc: resolveApp('src'),
5353
appNodeModules: resolveApp('node_modules'),

public/index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
7+
<title>Benjamin Warfield Smith</title>
8+
</head>
9+
<body>
10+
<div id="root" class="container"></div>
11+
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
12+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
13+
</body>
14+
</html>

src/App.css

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,32 @@ a {
1111
color: #6d6968;
1212
}
1313

14+
.nav {
15+
border-radius: 10px !important;
16+
-moz-border-radius: 10px !important;
17+
}
18+
19+
.navbar-brand {
20+
color: #a9a9a9 !important;
21+
font-size: 2.0em !important;
22+
-webkit-text-shadow: 0 1px 1px rgba(116,121,117,1.00);
23+
-moz-text-shadow: 0 1px 1px rgba(116,121,117,1.00);
24+
text-shadow: 0 1px 1px rgba(116,121,117,1.00);
25+
}
26+
27+
.nav a {
28+
color: #a9a9a9 !important;
29+
font-size: 1.4em !important;
30+
-webkit-text-shadow: 0 1px 1px rgba(116,121,117,1.00);
31+
-moz-text-shadow: 0 1px 1px rgba(116,121,117,1.00);
32+
text-shadow: 0 1px 1px rgba(116,121,117,1.00);
33+
}
34+
.nav li {
35+
padding-right:5px;
36+
}
37+
1438
.callout {
15-
font-size: 5.8em;
39+
font-size: 5.6em;
1640
display: inline-block;
1741
vertical-align: middle;
1842
line-height: 1.2em;
@@ -29,10 +53,10 @@ a {
2953
margin: 2em;
3054
display: inline-block;
3155
vertical-align: middle;
32-
line-height: 1.2em;
56+
line-height: 1.0em;
3357
font-family: "futura-pt-condensed", sans-serif;
3458
color: #6d6968;
35-
width: 100%;
59+
width: 95%;
3660
-webkit-text-shadow: 0 1px 1px rgba(0, 0, 0, 0.9);
3761
-moz-text-shadow: 0 1px 1px rgba(0, 0, 0, 0.9);
3862
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.9);

0 commit comments

Comments
 (0)