mirror of https://github.com/mitchell/mjfs.us.git
Moved routes to its own component and folder; changed navbar css to be
used as intended; changed exprience css; version bump
This commit is contained in:
parent
e4a4580ceb
commit
ab5f6fb062
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "react-website",
|
"name": "react-website",
|
||||||
"version": "0.2.18",
|
"version": "0.2.19",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome": "^1.1.8",
|
"@fortawesome/fontawesome": "^1.1.8",
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
// @flow
|
// @flow
|
||||||
import React from "react"
|
import React from "react"
|
||||||
import { Route, Switch } from "react-router-dom"
|
|
||||||
|
|
||||||
import Header from "./components/Header"
|
import Header from "./components/Header"
|
||||||
import Navbar from "./components/Navbar"
|
import Navbar from "./components/Navbar"
|
||||||
import Home from "./containers/Home"
|
import Routes from "./routes"
|
||||||
import Projects from "./containers/Projects"
|
|
||||||
import Experience from "./containers/Experience"
|
|
||||||
import Contact from "./containers/Contact"
|
|
||||||
|
|
||||||
import "./Website.css"
|
import "./Website.css"
|
||||||
|
|
||||||
|
@ -18,14 +14,9 @@ class Website extends React.Component<Props> {
|
||||||
return (
|
return (
|
||||||
<div className="website">
|
<div className="website">
|
||||||
<div className="main-container">
|
<div className="main-container">
|
||||||
<Header />
|
|
||||||
<Switch>
|
|
||||||
<Route exact path="/" component={Home} />
|
|
||||||
<Route path="/projects" component={Projects} />
|
|
||||||
<Route path="/experience" component={Experience} />
|
|
||||||
<Route path="/contact" component={Contact} />
|
|
||||||
</Switch>
|
|
||||||
<Navbar />
|
<Navbar />
|
||||||
|
<Header />
|
||||||
|
<Routes />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
|
@ -7,6 +7,12 @@
|
||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.navbar-small {
|
||||||
|
bottom: 0;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
top: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.navbar-button {
|
.navbar-button {
|
||||||
background-color: rgb(139, 191, 209);
|
background-color: rgb(139, 191, 209);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
|
@ -30,53 +36,48 @@
|
||||||
width: 52.5%;
|
width: 52.5%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-menu div {
|
.navbar-menu-button {
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
color: white;
|
color: white;
|
||||||
float: left;
|
float: left;
|
||||||
margin: 1% 2.5%;
|
margin: 1% 2.5%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 7px 0;
|
padding: 7px 0;
|
||||||
|
text-decoration: none;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
transition: background-color 0.2s, box-shadow 0.1s;
|
transition: background-color 0.2s, box-shadow 0.1s;
|
||||||
width: 20%;
|
width: 20%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-menu div:hover {
|
.navbar-menu-button:hover {
|
||||||
background-color: rgb(86, 95, 118);
|
background-color: rgb(86, 95, 118);
|
||||||
}
|
}
|
||||||
|
|
||||||
.active-button div {
|
.active-button {
|
||||||
background-color: rgb(130, 160, 196);
|
background-color: rgb(130, 160, 196);
|
||||||
box-shadow: 0 0 5px rgb(59, 64, 83) inset;
|
box-shadow: 0 0 5px rgb(59, 64, 83) inset;
|
||||||
}
|
}
|
||||||
|
|
||||||
.active-button div:hover {
|
.active-button:hover {
|
||||||
background-color: rgb(139, 191, 209);
|
background-color: rgb(139, 191, 209);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 500px) {
|
@media screen and (max-width: 500px) {
|
||||||
.navbar {
|
|
||||||
bottom: 0;
|
|
||||||
padding-bottom: 5px;
|
|
||||||
top: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar-menu {
|
.navbar-menu {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
width: 75%;
|
width: 75%;
|
||||||
}
|
}
|
||||||
.navbar-menu div {
|
.navbar-menu-button {
|
||||||
margin: 5px 0;
|
margin: 5px 0;
|
||||||
padding: 5px 0;
|
padding: 5px 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-menu div:hover {
|
.navbar-menu-button:hover {
|
||||||
background-color: inherit;
|
background-color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.active-button div:hover {
|
.active-button:hover {
|
||||||
background-color: rgb(130, 160, 196);
|
background-color: rgb(130, 160, 196);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,20 +25,37 @@ class Navbar extends React.Component<Props> {
|
||||||
}
|
}
|
||||||
changeMenuOn="500px"
|
changeMenuOn="500px"
|
||||||
largeMenuClassName="navbar"
|
largeMenuClassName="navbar"
|
||||||
smallMenuClassName="navbar"
|
smallMenuClassName="navbar navbar-small"
|
||||||
menu={
|
menu={
|
||||||
<div className="navbar-menu">
|
<div className="navbar-menu">
|
||||||
<NavLink activeClassName="active-button" exact to="/">
|
<NavLink
|
||||||
<div>Home</div>
|
className="navbar-menu-button"
|
||||||
|
activeClassName="active-button"
|
||||||
|
exact
|
||||||
|
to="/"
|
||||||
|
>
|
||||||
|
Home
|
||||||
</NavLink>
|
</NavLink>
|
||||||
<NavLink activeClassName="active-button" to="/projects">
|
<NavLink
|
||||||
<div>Projects</div>
|
className="navbar-menu-button"
|
||||||
|
activeClassName="active-button"
|
||||||
|
to="/projects"
|
||||||
|
>
|
||||||
|
Projects
|
||||||
</NavLink>
|
</NavLink>
|
||||||
<NavLink activeClassName="active-button" to="/experience">
|
<NavLink
|
||||||
<div>Experience</div>
|
className="navbar-menu-button"
|
||||||
|
activeClassName="active-button"
|
||||||
|
to="/experience"
|
||||||
|
>
|
||||||
|
Experience
|
||||||
</NavLink>
|
</NavLink>
|
||||||
<NavLink activeClassName="active-button" to="/contact">
|
<NavLink
|
||||||
<div>Contact</div>
|
className="navbar-menu-button"
|
||||||
|
activeClassName="active-button"
|
||||||
|
to="/contact"
|
||||||
|
>
|
||||||
|
Contact
|
||||||
</NavLink>
|
</NavLink>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.experience-container {
|
.experience-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: row wrap;
|
flex-flow: column nowrap;
|
||||||
margin: 2% 0;
|
margin: 2% 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
// @flow
|
||||||
|
import React from "react"
|
||||||
|
import { Route, Switch } from "react-router-dom"
|
||||||
|
|
||||||
|
import Home from "../containers/Home"
|
||||||
|
import Projects from "../containers/Projects"
|
||||||
|
import Experience from "../containers/Experience"
|
||||||
|
import Contact from "../containers/Contact"
|
||||||
|
|
||||||
|
type Props = {}
|
||||||
|
|
||||||
|
class Routes extends React.Component<Props> {
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<Switch>
|
||||||
|
<Route exact path="/" component={Home} />
|
||||||
|
<Route path="/projects" component={Projects} />
|
||||||
|
<Route path="/experience" component={Experience} />
|
||||||
|
<Route path="/contact" component={Contact} />
|
||||||
|
</Switch>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Routes
|
Loading…
Reference in New Issue