+ SHOP BY CATEGORY
+
+
+
+ Burgers
+
+
+
+ Pizzas
+
+
+
+ Desserts
+
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164052.js b/.history/src/Sidebar_20200911164052.js
new file mode 100644
index 000000000..3639a0818
--- /dev/null
+++ b/.history/src/Sidebar_20200911164052.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164056.js b/.history/src/Sidebar_20200911164056.js
new file mode 100644
index 000000000..f9e816e69
--- /dev/null
+++ b/.history/src/Sidebar_20200911164056.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164100.js b/.history/src/Sidebar_20200911164100.js
new file mode 100644
index 000000000..2acb3b0e8
--- /dev/null
+++ b/.history/src/Sidebar_20200911164100.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164103.js b/.history/src/Sidebar_20200911164103.js
new file mode 100644
index 000000000..c1670fca6
--- /dev/null
+++ b/.history/src/Sidebar_20200911164103.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164107.js b/.history/src/Sidebar_20200911164107.js
new file mode 100644
index 000000000..63ba044f1
--- /dev/null
+++ b/.history/src/Sidebar_20200911164107.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164111.js b/.history/src/Sidebar_20200911164111.js
new file mode 100644
index 000000000..9b73e5648
--- /dev/null
+++ b/.history/src/Sidebar_20200911164111.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164113.js b/.history/src/Sidebar_20200911164113.js
new file mode 100644
index 000000000..79334fde7
--- /dev/null
+++ b/.history/src/Sidebar_20200911164113.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164125.js b/.history/src/Sidebar_20200911164125.js
new file mode 100644
index 000000000..082545052
--- /dev/null
+++ b/.history/src/Sidebar_20200911164125.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164130.js b/.history/src/Sidebar_20200911164130.js
new file mode 100644
index 000000000..08ff47326
--- /dev/null
+++ b/.history/src/Sidebar_20200911164130.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164133.js b/.history/src/Sidebar_20200911164133.js
new file mode 100644
index 000000000..317de47d5
--- /dev/null
+++ b/.history/src/Sidebar_20200911164133.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164205.css b/.history/src/Sidebar_20200911164205.css
new file mode 100644
index 000000000..73c9e1a32
--- /dev/null
+++ b/.history/src/Sidebar_20200911164205.css
@@ -0,0 +1,74 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164209.css b/.history/src/Sidebar_20200911164209.css
new file mode 100644
index 000000000..d9eb1d8c6
--- /dev/null
+++ b/.history/src/Sidebar_20200911164209.css
@@ -0,0 +1,74 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+?
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164210.css b/.history/src/Sidebar_20200911164210.css
new file mode 100644
index 000000000..5f1187f04
--- /dev/null
+++ b/.history/src/Sidebar_20200911164210.css
@@ -0,0 +1,74 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+/
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164212.css b/.history/src/Sidebar_20200911164212.css
new file mode 100644
index 000000000..5f1187f04
--- /dev/null
+++ b/.history/src/Sidebar_20200911164212.css
@@ -0,0 +1,74 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+/
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164214.css b/.history/src/Sidebar_20200911164214.css
new file mode 100644
index 000000000..7996c399e
--- /dev/null
+++ b/.history/src/Sidebar_20200911164214.css
@@ -0,0 +1,74 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+/**/
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164215.css b/.history/src/Sidebar_20200911164215.css
new file mode 100644
index 000000000..9b0a086c0
--- /dev/null
+++ b/.history/src/Sidebar_20200911164215.css
@@ -0,0 +1,74 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+/* */
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164222.css b/.history/src/Sidebar_20200911164222.css
new file mode 100644
index 000000000..f4559e951
--- /dev/null
+++ b/.history/src/Sidebar_20200911164222.css
@@ -0,0 +1,74 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+/* style for */
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164226.css b/.history/src/Sidebar_20200911164226.css
new file mode 100644
index 000000000..8427fee2b
--- /dev/null
+++ b/.history/src/Sidebar_20200911164226.css
@@ -0,0 +1,74 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+/* Style for */
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164227.css b/.history/src/Sidebar_20200911164227.css
new file mode 100644
index 000000000..175cc34c5
--- /dev/null
+++ b/.history/src/Sidebar_20200911164227.css
@@ -0,0 +1,74 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+/* Style for */
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164237.css b/.history/src/Sidebar_20200911164237.css
new file mode 100644
index 000000000..84a17c3d2
--- /dev/null
+++ b/.history/src/Sidebar_20200911164237.css
@@ -0,0 +1,74 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+/* Style for greeting header */
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164238.css b/.history/src/Sidebar_20200911164238.css
new file mode 100644
index 000000000..a21782f1b
--- /dev/null
+++ b/.history/src/Sidebar_20200911164238.css
@@ -0,0 +1,75 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+/* Style for greeting header */
+
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164240.css b/.history/src/Sidebar_20200911164240.css
new file mode 100644
index 000000000..8ac88f3d3
--- /dev/null
+++ b/.history/src/Sidebar_20200911164240.css
@@ -0,0 +1,75 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164242.css b/.history/src/Sidebar_20200911164242.css
new file mode 100644
index 000000000..05dc8aac6
--- /dev/null
+++ b/.history/src/Sidebar_20200911164242.css
@@ -0,0 +1,75 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164243.css b/.history/src/Sidebar_20200911164243.css
new file mode 100644
index 000000000..3d6333d00
--- /dev/null
+++ b/.history/src/Sidebar_20200911164243.css
@@ -0,0 +1,75 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ sidebar-heade
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164245.css b/.history/src/Sidebar_20200911164245.css
new file mode 100644
index 000000000..23902ffca
--- /dev/null
+++ b/.history/src/Sidebar_20200911164245.css
@@ -0,0 +1,75 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ sidebar-header
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164249.css b/.history/src/Sidebar_20200911164249.css
new file mode 100644
index 000000000..b0db88d9d
--- /dev/null
+++ b/.history/src/Sidebar_20200911164249.css
@@ -0,0 +1,75 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ .sidebar-header
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164252.css b/.history/src/Sidebar_20200911164252.css
new file mode 100644
index 000000000..b40469dd1
--- /dev/null
+++ b/.history/src/Sidebar_20200911164252.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ .sidebar-header {
+
+ }
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164253.css b/.history/src/Sidebar_20200911164253.css
new file mode 100644
index 000000000..8be3834b8
--- /dev/null
+++ b/.history/src/Sidebar_20200911164253.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ .sidebar-header {
+ back
+ }
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164255.css b/.history/src/Sidebar_20200911164255.css
new file mode 100644
index 000000000..eaddda53c
--- /dev/null
+++ b/.history/src/Sidebar_20200911164255.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ .sidebar-header {
+ background-color:
+ }
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164331.css b/.history/src/Sidebar_20200911164331.css
new file mode 100644
index 000000000..42efc8979
--- /dev/null
+++ b/.history/src/Sidebar_20200911164331.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ .sidebar-header {
+ background-color: 232F3e;
+ }
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164335.css b/.history/src/Sidebar_20200911164335.css
new file mode 100644
index 000000000..24cdcf714
--- /dev/null
+++ b/.history/src/Sidebar_20200911164335.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ .sidebar-header {
+ background-color: #232F3e;
+ }
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164400.css b/.history/src/Sidebar_20200911164400.css
new file mode 100644
index 000000000..8a8f789f4
--- /dev/null
+++ b/.history/src/Sidebar_20200911164400.css
@@ -0,0 +1,78 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ .sidebar-header {
+ background-color: #232F3e;
+
+ }
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164403.css b/.history/src/Sidebar_20200911164403.css
new file mode 100644
index 000000000..00b003323
--- /dev/null
+++ b/.history/src/Sidebar_20200911164403.css
@@ -0,0 +1,78 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ .sidebar-header {
+ background-color: #232F3e;
+ padding
+ }
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164405.css b/.history/src/Sidebar_20200911164405.css
new file mode 100644
index 000000000..01f3b5e06
--- /dev/null
+++ b/.history/src/Sidebar_20200911164405.css
@@ -0,0 +1,78 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ .sidebar-header {
+ background-color: #232F3e;
+ padding : 10px;
+ }
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164423.css b/.history/src/Sidebar_20200911164423.css
new file mode 100644
index 000000000..fa255852a
--- /dev/null
+++ b/.history/src/Sidebar_20200911164423.css
@@ -0,0 +1,79 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ .sidebar-header {
+ position: relative;
+ background-color: #232F3e;
+ padding : 10px;
+ }
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164434.css b/.history/src/Sidebar_20200911164434.css
new file mode 100644
index 000000000..01f3b5e06
--- /dev/null
+++ b/.history/src/Sidebar_20200911164434.css
@@ -0,0 +1,78 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+ }
+
+ /* Individual item */
+ .bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+ }
+
+ /* Change color on hover */
+ .bm-item:hover {
+ color: white;
+ }
+
+ /* The rest copied directly from react-burger-menu docs */
+
+ /* Position and sizing of burger button */
+ .bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff ;
+
+ }
+
+ /* Color/shape of burger icon bars */
+ .bm-burger-bars {
+ background: #fff;
+ }
+
+ /* Position and sizing of clickable cross button */
+ .bm-cross-button {
+ height: 24px;
+ width: 24px;
+ }
+
+ /* Style for greeting header */
+ .sidebar-header {
+ background-color: #232F3e;
+ padding : 10px;
+ }
+
+ /* Color/shape of close button cross */
+ .bm-cross {
+ background: #bdc3c7;
+ }
+
+ /* General sidebar styles */
+ .bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+ }
+
+ /* Morph shape necessary with bubble or elastic */
+ .bm-morph-shape {
+ fill: #373a47;
+ }
+
+ /* Wrapper for item list */
+ .bm-item-list {
+ color: #b8b7ad;
+ }
+
+ /* Styling of overlay */
+ .bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+ }
\ No newline at end of file
diff --git a/.history/src/Sidebar_20200911164533.css b/.history/src/Sidebar_20200911164533.css
new file mode 100644
index 000000000..f4d59c7da
--- /dev/null
+++ b/.history/src/Sidebar_20200911164533.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 100px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164543.css b/.history/src/Sidebar_20200911164543.css
new file mode 100644
index 000000000..b5740e5c9
--- /dev/null
+++ b/.history/src/Sidebar_20200911164543.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 0;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164545.css b/.history/src/Sidebar_20200911164545.css
new file mode 100644
index 000000000..9b30096c0
--- /dev/null
+++ b/.history/src/Sidebar_20200911164545.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: ;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164546.css b/.history/src/Sidebar_20200911164546.css
new file mode 100644
index 000000000..6d195e825
--- /dev/null
+++ b/.history/src/Sidebar_20200911164546.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 2;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164547.css b/.history/src/Sidebar_20200911164547.css
new file mode 100644
index 000000000..8707b6924
--- /dev/null
+++ b/.history/src/Sidebar_20200911164547.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164550.css b/.history/src/Sidebar_20200911164550.css
new file mode 100644
index 000000000..5c0d94c71
--- /dev/null
+++ b/.history/src/Sidebar_20200911164550.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25p;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164552.css b/.history/src/Sidebar_20200911164552.css
new file mode 100644
index 000000000..7ca08cc9d
--- /dev/null
+++ b/.history/src/Sidebar_20200911164552.css
@@ -0,0 +1,77 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164658.css b/.history/src/Sidebar_20200911164658.css
new file mode 100644
index 000000000..a2d46b0fa
--- /dev/null
+++ b/.history/src/Sidebar_20200911164658.css
@@ -0,0 +1,78 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164659.css b/.history/src/Sidebar_20200911164659.css
new file mode 100644
index 000000000..2284bc8a1
--- /dev/null
+++ b/.history/src/Sidebar_20200911164659.css
@@ -0,0 +1,78 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164714.css b/.history/src/Sidebar_20200911164714.css
new file mode 100644
index 000000000..ed4a4213b
--- /dev/null
+++ b/.history/src/Sidebar_20200911164714.css
@@ -0,0 +1,79 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164717.css b/.history/src/Sidebar_20200911164717.css
new file mode 100644
index 000000000..0716ed265
--- /dev/null
+++ b/.history/src/Sidebar_20200911164717.css
@@ -0,0 +1,79 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164719.css b/.history/src/Sidebar_20200911164719.css
new file mode 100644
index 000000000..567a99c14
--- /dev/null
+++ b/.history/src/Sidebar_20200911164719.css
@@ -0,0 +1,79 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164825.css b/.history/src/Sidebar_20200911164825.css
new file mode 100644
index 000000000..cfeb599c3
--- /dev/null
+++ b/.history/src/Sidebar_20200911164825.css
@@ -0,0 +1,81 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+ margin-bottom: 0;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911164938.js b/.history/src/Sidebar_20200911164938.js
new file mode 100644
index 000000000..08ff47326
--- /dev/null
+++ b/.history/src/Sidebar_20200911164938.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164940.js b/.history/src/Sidebar_20200911164940.js
new file mode 100644
index 000000000..0cd317e99
--- /dev/null
+++ b/.history/src/Sidebar_20200911164940.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164942.js b/.history/src/Sidebar_20200911164942.js
new file mode 100644
index 000000000..e2082e3b0
--- /dev/null
+++ b/.history/src/Sidebar_20200911164942.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164949.js b/.history/src/Sidebar_20200911164949.js
new file mode 100644
index 000000000..dd7bfb8ab
--- /dev/null
+++ b/.history/src/Sidebar_20200911164949.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164952.js b/.history/src/Sidebar_20200911164952.js
new file mode 100644
index 000000000..b003d2567
--- /dev/null
+++ b/.history/src/Sidebar_20200911164952.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164953.js b/.history/src/Sidebar_20200911164953.js
new file mode 100644
index 000000000..f6057defc
--- /dev/null
+++ b/.history/src/Sidebar_20200911164953.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164955.js b/.history/src/Sidebar_20200911164955.js
new file mode 100644
index 000000000..4a34e8421
--- /dev/null
+++ b/.history/src/Sidebar_20200911164955.js
@@ -0,0 +1,27 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164956.js b/.history/src/Sidebar_20200911164956.js
new file mode 100644
index 000000000..65b7a9459
--- /dev/null
+++ b/.history/src/Sidebar_20200911164956.js
@@ -0,0 +1,26 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911164959.js b/.history/src/Sidebar_20200911164959.js
new file mode 100644
index 000000000..3ef978d21
--- /dev/null
+++ b/.history/src/Sidebar_20200911164959.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911165000.js b/.history/src/Sidebar_20200911165000.js
new file mode 100644
index 000000000..1183147b1
--- /dev/null
+++ b/.history/src/Sidebar_20200911165000.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+
+ hello, Name
+
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911165008.js b/.history/src/Sidebar_20200911165008.js
new file mode 100644
index 000000000..9599372c6
--- /dev/null
+++ b/.history/src/Sidebar_20200911165008.js
@@ -0,0 +1,31 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+
+
+ hello, Name
+
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911165011.js b/.history/src/Sidebar_20200911165011.js
new file mode 100644
index 000000000..a1618cc1e
--- /dev/null
+++ b/.history/src/Sidebar_20200911165011.js
@@ -0,0 +1,31 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+ >
+
+ hello, Name
+
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911165012.js b/.history/src/Sidebar_20200911165012.js
new file mode 100644
index 000000000..56c7752ce
--- /dev/null
+++ b/.history/src/Sidebar_20200911165012.js
@@ -0,0 +1,31 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+ <>
+
+ hello, Name
+
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911165018.js b/.history/src/Sidebar_20200911165018.js
new file mode 100644
index 000000000..2e54f7089
--- /dev/null
+++ b/.history/src/Sidebar_20200911165018.js
@@ -0,0 +1,32 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+ <>
+
+ hello, Name
+
+ // Pass on our props
+
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911165020.js b/.history/src/Sidebar_20200911165020.js
new file mode 100644
index 000000000..7d7cf9a91
--- /dev/null
+++ b/.history/src/Sidebar_20200911165020.js
@@ -0,0 +1,32 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+ <.>
+
+ hello, Name
+
+ // Pass on our props
+
+ >
+ );
+};
diff --git a/.history/src/Sidebar_20200911165029.js b/.history/src/Sidebar_20200911165029.js
new file mode 100644
index 000000000..7d7cf9a91
--- /dev/null
+++ b/.history/src/Sidebar_20200911165029.js
@@ -0,0 +1,32 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+ <.>
+
+ hello, Name
+
+ // Pass on our props
+
+ >
+ );
+};
diff --git a/.history/src/Sidebar_20200911165031.js b/.history/src/Sidebar_20200911165031.js
new file mode 100644
index 000000000..7d7cf9a91
--- /dev/null
+++ b/.history/src/Sidebar_20200911165031.js
@@ -0,0 +1,32 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+ <.>
+
+ hello, Name
+
+ // Pass on our props
+
+ >
+ );
+};
diff --git a/.history/src/Sidebar_20200911165036.js b/.history/src/Sidebar_20200911165036.js
new file mode 100644
index 000000000..fce34b707
--- /dev/null
+++ b/.history/src/Sidebar_20200911165036.js
@@ -0,0 +1,32 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+ <>
+
+ hello, Name
+
+ // Pass on our props
+
+ >
+ );
+};
diff --git a/.history/src/Sidebar_20200911165052.js b/.history/src/Sidebar_20200911165052.js
new file mode 100644
index 000000000..de8273b22
--- /dev/null
+++ b/.history/src/Sidebar_20200911165052.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+
+ hello, Name
+
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911165058.js b/.history/src/Sidebar_20200911165058.js
new file mode 100644
index 000000000..918e1b8db
--- /dev/null
+++ b/.history/src/Sidebar_20200911165058.js
@@ -0,0 +1,27 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911165109.js b/.history/src/Sidebar_20200911165109.js
new file mode 100644
index 000000000..649fce276
--- /dev/null
+++ b/.history/src/Sidebar_20200911165109.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911165154.css b/.history/src/Sidebar_20200911165154.css
new file mode 100644
index 000000000..f2f883543
--- /dev/null
+++ b/.history/src/Sidebar_20200911165154.css
@@ -0,0 +1,81 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+ margin-top: 0;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165200.css b/.history/src/Sidebar_20200911165200.css
new file mode 100644
index 000000000..aa7a7eac0
--- /dev/null
+++ b/.history/src/Sidebar_20200911165200.css
@@ -0,0 +1,81 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+ margin-top: 30;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165201.css b/.history/src/Sidebar_20200911165201.css
new file mode 100644
index 000000000..19e4b196b
--- /dev/null
+++ b/.history/src/Sidebar_20200911165201.css
@@ -0,0 +1,81 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+ margin-top: 30px;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165212.css b/.history/src/Sidebar_20200911165212.css
new file mode 100644
index 000000000..3225215e5
--- /dev/null
+++ b/.history/src/Sidebar_20200911165212.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165228.css b/.history/src/Sidebar_20200911165228.css
new file mode 100644
index 000000000..af0dc52d8
--- /dev/null
+++ b/.history/src/Sidebar_20200911165228.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100% !;
+ height: auto;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165230.css b/.history/src/Sidebar_20200911165230.css
new file mode 100644
index 000000000..2cf6538ac
--- /dev/null
+++ b/.history/src/Sidebar_20200911165230.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100% !important;
+ height: auto;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165237.css b/.history/src/Sidebar_20200911165237.css
new file mode 100644
index 000000000..948b137ac
--- /dev/null
+++ b/.history/src/Sidebar_20200911165237.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100% ;
+ height: auto;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165238.css b/.history/src/Sidebar_20200911165238.css
new file mode 100644
index 000000000..fc0fbefd4
--- /dev/null
+++ b/.history/src/Sidebar_20200911165238.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100% ;
+ height: auto;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165241.css b/.history/src/Sidebar_20200911165241.css
new file mode 100644
index 000000000..3225215e5
--- /dev/null
+++ b/.history/src/Sidebar_20200911165241.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165258.css b/.history/src/Sidebar_20200911165258.css
new file mode 100644
index 000000000..d45eb38bc
--- /dev/null
+++ b/.history/src/Sidebar_20200911165258.css
@@ -0,0 +1,81 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+ padd
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165300.css b/.history/src/Sidebar_20200911165300.css
new file mode 100644
index 000000000..867d949b0
--- /dev/null
+++ b/.history/src/Sidebar_20200911165300.css
@@ -0,0 +1,81 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+ padding: 10px;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165307.css b/.history/src/Sidebar_20200911165307.css
new file mode 100644
index 000000000..3225215e5
--- /dev/null
+++ b/.history/src/Sidebar_20200911165307.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165412.css b/.history/src/Sidebar_20200911165412.css
new file mode 100644
index 000000000..5b41b139d
--- /dev/null
+++ b/.history/src/Sidebar_20200911165412.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ overflow: hidden;
+ background-color: #333;
+ position: fixed; /* Set the navbar to fixed position */
+ top: 0; /* Position the navbar at the top of the page */
+ width: 100%;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165435.css b/.history/src/Sidebar_20200911165435.css
new file mode 100644
index 000000000..149ab5423
--- /dev/null
+++ b/.history/src/Sidebar_20200911165435.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ overflow: hidden;
+ background-color: #333;
+ top: 0; /* Position the navbar at the top of the page */
+ width: 100%;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165442.css b/.history/src/Sidebar_20200911165442.css
new file mode 100644
index 000000000..b4eb5a91d
--- /dev/null
+++ b/.history/src/Sidebar_20200911165442.css
@@ -0,0 +1,79 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ overflow: hidden;
+ top: 0; /* Position the navbar at the top of the page */
+ width: 100%;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165450.css b/.history/src/Sidebar_20200911165450.css
new file mode 100644
index 000000000..867d949b0
--- /dev/null
+++ b/.history/src/Sidebar_20200911165450.css
@@ -0,0 +1,81 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+ padding: 10px;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165453.css b/.history/src/Sidebar_20200911165453.css
new file mode 100644
index 000000000..3225215e5
--- /dev/null
+++ b/.history/src/Sidebar_20200911165453.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height: auto;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165516.css b/.history/src/Sidebar_20200911165516.css
new file mode 100644
index 000000000..8353e0394
--- /dev/null
+++ b/.history/src/Sidebar_20200911165516.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: 100%;
+ height:50px;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165536.css b/.history/src/Sidebar_20200911165536.css
new file mode 100644
index 000000000..ba53e1055
--- /dev/null
+++ b/.history/src/Sidebar_20200911165536.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 25px;
+ width: auto%;
+ height:50px;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165544.css b/.history/src/Sidebar_20200911165544.css
new file mode 100644
index 000000000..c372a7dd6
--- /dev/null
+++ b/.history/src/Sidebar_20200911165544.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: auto;
+ width: auto%;
+ height:50px;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165554.css b/.history/src/Sidebar_20200911165554.css
new file mode 100644
index 000000000..201c30137
--- /dev/null
+++ b/.history/src/Sidebar_20200911165554.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ width: auto%;
+ height:50px;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165601.css b/.history/src/Sidebar_20200911165601.css
new file mode 100644
index 000000000..5d053a17b
--- /dev/null
+++ b/.history/src/Sidebar_20200911165601.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5;
+ width: auto%;
+ height:50px;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165602.css b/.history/src/Sidebar_20200911165602.css
new file mode 100644
index 000000000..fa7f7d505
--- /dev/null
+++ b/.history/src/Sidebar_20200911165602.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ width: auto%;
+ height:50px;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165659.css b/.history/src/Sidebar_20200911165659.css
new file mode 100644
index 000000000..b328987f9
--- /dev/null
+++ b/.history/src/Sidebar_20200911165659.css
@@ -0,0 +1,79 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height:50px;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165701.css b/.history/src/Sidebar_20200911165701.css
new file mode 100644
index 000000000..4f4918b73
--- /dev/null
+++ b/.history/src/Sidebar_20200911165701.css
@@ -0,0 +1,81 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height:50px;
+ top: 0;
+ border: 3px solid blue;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165712.css b/.history/src/Sidebar_20200911165712.css
new file mode 100644
index 000000000..972b626f5
--- /dev/null
+++ b/.history/src/Sidebar_20200911165712.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height:50px;
+ top: 0;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165732.css b/.history/src/Sidebar_20200911165732.css
new file mode 100644
index 000000000..e47386d5a
--- /dev/null
+++ b/.history/src/Sidebar_20200911165732.css
@@ -0,0 +1,80 @@
+/* #page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+} */
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height:50px;
+ top: 0;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165744.css b/.history/src/Sidebar_20200911165744.css
new file mode 100644
index 000000000..80bcfbfbf
--- /dev/null
+++ b/.history/src/Sidebar_20200911165744.css
@@ -0,0 +1,74 @@
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height:50px;
+ top: 0;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165826.css b/.history/src/Sidebar_20200911165826.css
new file mode 100644
index 000000000..c5139a38b
--- /dev/null
+++ b/.history/src/Sidebar_20200911165826.css
@@ -0,0 +1,75 @@
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ width: 100%;
+ height:50px;
+ top: 0;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165834.css b/.history/src/Sidebar_20200911165834.css
new file mode 100644
index 000000000..972b626f5
--- /dev/null
+++ b/.history/src/Sidebar_20200911165834.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height:50px;
+ top: 0;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165840.css b/.history/src/Sidebar_20200911165840.css
new file mode 100644
index 000000000..3672ffd82
--- /dev/null
+++ b/.history/src/Sidebar_20200911165840.css
@@ -0,0 +1,79 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height: 50px;
+ top: 0;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165929.css b/.history/src/Sidebar_20200911165929.css
new file mode 100644
index 000000000..435df3abc
--- /dev/null
+++ b/.history/src/Sidebar_20200911165929.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height: 50px;
+ top: 0;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165932.css b/.history/src/Sidebar_20200911165932.css
new file mode 100644
index 000000000..c4fb2b2f2
--- /dev/null
+++ b/.history/src/Sidebar_20200911165932.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height: 50px;
+ top: 0;
+ left
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165933.css b/.history/src/Sidebar_20200911165933.css
new file mode 100644
index 000000000..ce96e0be6
--- /dev/null
+++ b/.history/src/Sidebar_20200911165933.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height: 50px;
+ top: 0;
+ left:
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165937.css b/.history/src/Sidebar_20200911165937.css
new file mode 100644
index 000000000..59a7d8bdb
--- /dev/null
+++ b/.history/src/Sidebar_20200911165937.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height: 50px;
+ top: 0;
+ left:25px
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165939.css b/.history/src/Sidebar_20200911165939.css
new file mode 100644
index 000000000..154e80e66
--- /dev/null
+++ b/.history/src/Sidebar_20200911165939.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height: 50px;
+ top: 0;
+ left:25px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165944.css b/.history/src/Sidebar_20200911165944.css
new file mode 100644
index 000000000..879055bf3
--- /dev/null
+++ b/.history/src/Sidebar_20200911165944.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height: 50px;
+ top: 0;
+ left: 225px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165949.css b/.history/src/Sidebar_20200911165949.css
new file mode 100644
index 000000000..3672ffd82
--- /dev/null
+++ b/.history/src/Sidebar_20200911165949.css
@@ -0,0 +1,79 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height: 50px;
+ top: 0;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165955.css b/.history/src/Sidebar_20200911165955.css
new file mode 100644
index 000000000..a12092e71
--- /dev/null
+++ b/.history/src/Sidebar_20200911165955.css
@@ -0,0 +1,81 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height: 50px;
+ top: 0;
+ position:absolute;
+ top:0px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911165958.css b/.history/src/Sidebar_20200911165958.css
new file mode 100644
index 000000000..174cdc300
--- /dev/null
+++ b/.history/src/Sidebar_20200911165958.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ height: 50px;
+ top: 0;
+ position:absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170007.css b/.history/src/Sidebar_20200911170007.css
new file mode 100644
index 000000000..3a27d3843
--- /dev/null
+++ b/.history/src/Sidebar_20200911170007.css
@@ -0,0 +1,79 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ position:absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170017.css b/.history/src/Sidebar_20200911170017.css
new file mode 100644
index 000000000..d3030b3b8
--- /dev/null
+++ b/.history/src/Sidebar_20200911170017.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width:
+ position:absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170019.css b/.history/src/Sidebar_20200911170019.css
new file mode 100644
index 000000000..fa7fc960a
--- /dev/null
+++ b/.history/src/Sidebar_20200911170019.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 100
+ position:absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170020.css b/.history/src/Sidebar_20200911170020.css
new file mode 100644
index 000000000..e8d61c358
--- /dev/null
+++ b/.history/src/Sidebar_20200911170020.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 100%;
+ position:absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170030.css b/.history/src/Sidebar_20200911170030.css
new file mode 100644
index 000000000..44b73ca93
--- /dev/null
+++ b/.history/src/Sidebar_20200911170030.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 100%;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170033.css b/.history/src/Sidebar_20200911170033.css
new file mode 100644
index 000000000..8c701c83c
--- /dev/null
+++ b/.history/src/Sidebar_20200911170033.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 100%;
+ position: sticky absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170037.css b/.history/src/Sidebar_20200911170037.css
new file mode 100644
index 000000000..44b73ca93
--- /dev/null
+++ b/.history/src/Sidebar_20200911170037.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 100%;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170045.css b/.history/src/Sidebar_20200911170045.css
new file mode 100644
index 000000000..5b1bb2c4e
--- /dev/null
+++ b/.history/src/Sidebar_20200911170045.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 75%;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170103.css b/.history/src/Sidebar_20200911170103.css
new file mode 100644
index 000000000..8d1424177
--- /dev/null
+++ b/.history/src/Sidebar_20200911170103.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 25px%;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170105.css b/.history/src/Sidebar_20200911170105.css
new file mode 100644
index 000000000..5d29ea7a9
--- /dev/null
+++ b/.history/src/Sidebar_20200911170105.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 25px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170109.css b/.history/src/Sidebar_20200911170109.css
new file mode 100644
index 000000000..989c3d129
--- /dev/null
+++ b/.history/src/Sidebar_20200911170109.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 125px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170113.css b/.history/src/Sidebar_20200911170113.css
new file mode 100644
index 000000000..1fde71cd2
--- /dev/null
+++ b/.history/src/Sidebar_20200911170113.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 225px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170131.css b/.history/src/Sidebar_20200911170131.css
new file mode 100644
index 000000000..fe474e13d
--- /dev/null
+++ b/.history/src/Sidebar_20200911170131.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 325px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170135.css b/.history/src/Sidebar_20200911170135.css
new file mode 100644
index 000000000..5d29ea7a9
--- /dev/null
+++ b/.history/src/Sidebar_20200911170135.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 25px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170136.css b/.history/src/Sidebar_20200911170136.css
new file mode 100644
index 000000000..1fde71cd2
--- /dev/null
+++ b/.history/src/Sidebar_20200911170136.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 225px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170154.css b/.history/src/Sidebar_20200911170154.css
new file mode 100644
index 000000000..1a7cc7012
--- /dev/null
+++ b/.history/src/Sidebar_20200911170154.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 235px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170203.css b/.history/src/Sidebar_20200911170203.css
new file mode 100644
index 000000000..aeea7c36e
--- /dev/null
+++ b/.history/src/Sidebar_20200911170203.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 255px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170208.css b/.history/src/Sidebar_20200911170208.css
new file mode 100644
index 000000000..e001ecc12
--- /dev/null
+++ b/.history/src/Sidebar_20200911170208.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170212.css b/.history/src/Sidebar_20200911170212.css
new file mode 100644
index 000000000..0013b28b7
--- /dev/null
+++ b/.history/src/Sidebar_20200911170212.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 265px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170218.css b/.history/src/Sidebar_20200911170218.css
new file mode 100644
index 000000000..65d8f2955
--- /dev/null
+++ b/.history/src/Sidebar_20200911170218.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 263px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170236.css b/.history/src/Sidebar_20200911170236.css
new file mode 100644
index 000000000..e001ecc12
--- /dev/null
+++ b/.history/src/Sidebar_20200911170236.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170355.css b/.history/src/Sidebar_20200911170355.css
new file mode 100644
index 000000000..0df3b77ff
--- /dev/null
+++ b/.history/src/Sidebar_20200911170355.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ margin-left: -15px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170402.css b/.history/src/Sidebar_20200911170402.css
new file mode 100644
index 000000000..e001ecc12
--- /dev/null
+++ b/.history/src/Sidebar_20200911170402.css
@@ -0,0 +1,80 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170406.css b/.history/src/Sidebar_20200911170406.css
new file mode 100644
index 000000000..d51599112
--- /dev/null
+++ b/.history/src/Sidebar_20200911170406.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+ margin-left: -15px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170450.css b/.history/src/Sidebar_20200911170450.css
new file mode 100644
index 000000000..ec6d56a0c
--- /dev/null
+++ b/.history/src/Sidebar_20200911170450.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170456.css b/.history/src/Sidebar_20200911170456.css
new file mode 100644
index 000000000..fcc0cb5ff
--- /dev/null
+++ b/.history/src/Sidebar_20200911170456.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+ margin-left: -25px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170459.css b/.history/src/Sidebar_20200911170459.css
new file mode 100644
index 000000000..fecf7e1ef
--- /dev/null
+++ b/.history/src/Sidebar_20200911170459.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 5px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+ margin-left: -20px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170510.css b/.history/src/Sidebar_20200911170510.css
new file mode 100644
index 000000000..7ae9c9df7
--- /dev/null
+++ b/.history/src/Sidebar_20200911170510.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 8px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+ margin-left: -20px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170518.css b/.history/src/Sidebar_20200911170518.css
new file mode 100644
index 000000000..46d99905e
--- /dev/null
+++ b/.history/src/Sidebar_20200911170518.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 8px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170524.css b/.history/src/Sidebar_20200911170524.css
new file mode 100644
index 000000000..ca6f7d191
--- /dev/null
+++ b/.history/src/Sidebar_20200911170524.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170533.css b/.history/src/Sidebar_20200911170533.css
new file mode 100644
index 000000000..abae2a04f
--- /dev/null
+++ b/.history/src/Sidebar_20200911170533.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -20px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170542.css b/.history/src/Sidebar_20200911170542.css
new file mode 100644
index 000000000..ca6f7d191
--- /dev/null
+++ b/.history/src/Sidebar_20200911170542.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 260px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170549.css b/.history/src/Sidebar_20200911170549.css
new file mode 100644
index 000000000..154f659b7
--- /dev/null
+++ b/.history/src/Sidebar_20200911170549.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 270px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170556.css b/.history/src/Sidebar_20200911170556.css
new file mode 100644
index 000000000..e76093380
--- /dev/null
+++ b/.history/src/Sidebar_20200911170556.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 275px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170600.css b/.history/src/Sidebar_20200911170600.css
new file mode 100644
index 000000000..7cfa9dcf3
--- /dev/null
+++ b/.history/src/Sidebar_20200911170600.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 278px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170603.css b/.history/src/Sidebar_20200911170603.css
new file mode 100644
index 000000000..6c98c5244
--- /dev/null
+++ b/.history/src/Sidebar_20200911170603.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 27px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170606.css b/.history/src/Sidebar_20200911170606.css
new file mode 100644
index 000000000..09e8d6911
--- /dev/null
+++ b/.history/src/Sidebar_20200911170606.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 280px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170609.css b/.history/src/Sidebar_20200911170609.css
new file mode 100644
index 000000000..b62a058e2
--- /dev/null
+++ b/.history/src/Sidebar_20200911170609.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170612.css b/.history/src/Sidebar_20200911170612.css
new file mode 100644
index 000000000..eb92e529e
--- /dev/null
+++ b/.history/src/Sidebar_20200911170612.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170635.css b/.history/src/Sidebar_20200911170635.css
new file mode 100644
index 000000000..cdad71511
--- /dev/null
+++ b/.history/src/Sidebar_20200911170635.css
@@ -0,0 +1,83 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border 0
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170641.css b/.history/src/Sidebar_20200911170641.css
new file mode 100644
index 000000000..48c60322a
--- /dev/null
+++ b/.history/src/Sidebar_20200911170641.css
@@ -0,0 +1,83 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border: 0
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170643.css b/.history/src/Sidebar_20200911170643.css
new file mode 100644
index 000000000..ba3a28389
--- /dev/null
+++ b/.history/src/Sidebar_20200911170643.css
@@ -0,0 +1,83 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border: 0;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170652.css b/.history/src/Sidebar_20200911170652.css
new file mode 100644
index 000000000..eb92e529e
--- /dev/null
+++ b/.history/src/Sidebar_20200911170652.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170706.css b/.history/src/Sidebar_20200911170706.css
new file mode 100644
index 000000000..d9cfbb7e0
--- /dev/null
+++ b/.history/src/Sidebar_20200911170706.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: ##131921;
+ padding: 10px;
+ top: 0;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170709.css b/.history/src/Sidebar_20200911170709.css
new file mode 100644
index 000000000..6eeddf99b
--- /dev/null
+++ b/.history/src/Sidebar_20200911170709.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #131921;
+ padding: 10px;
+ top: 0;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170722.css b/.history/src/Sidebar_20200911170722.css
new file mode 100644
index 000000000..d9cfbb7e0
--- /dev/null
+++ b/.history/src/Sidebar_20200911170722.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: ##131921;
+ padding: 10px;
+ top: 0;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170723.css b/.history/src/Sidebar_20200911170723.css
new file mode 100644
index 000000000..eb92e529e
--- /dev/null
+++ b/.history/src/Sidebar_20200911170723.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170737.css b/.history/src/Sidebar_20200911170737.css
new file mode 100644
index 000000000..b62a058e2
--- /dev/null
+++ b/.history/src/Sidebar_20200911170737.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170742.css b/.history/src/Sidebar_20200911170742.css
new file mode 100644
index 000000000..84d79ba76
--- /dev/null
+++ b/.history/src/Sidebar_20200911170742.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281.5px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170750.css b/.history/src/Sidebar_20200911170750.css
new file mode 100644
index 000000000..0c2890b3f
--- /dev/null
+++ b/.history/src/Sidebar_20200911170750.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170753.css b/.history/src/Sidebar_20200911170753.css
new file mode 100644
index 000000000..864645818
--- /dev/null
+++ b/.history/src/Sidebar_20200911170753.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 100;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170758.css b/.history/src/Sidebar_20200911170758.css
new file mode 100644
index 000000000..8ffc99d37
--- /dev/null
+++ b/.history/src/Sidebar_20200911170758.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 100%;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170807.css b/.history/src/Sidebar_20200911170807.css
new file mode 100644
index 000000000..cd91c2449
--- /dev/null
+++ b/.history/src/Sidebar_20200911170807.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 80%;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170812.css b/.history/src/Sidebar_20200911170812.css
new file mode 100644
index 000000000..aeb00e6f7
--- /dev/null
+++ b/.history/src/Sidebar_20200911170812.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 70%;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170813.css b/.history/src/Sidebar_20200911170813.css
new file mode 100644
index 000000000..782ab981e
--- /dev/null
+++ b/.history/src/Sidebar_20200911170813.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 0%;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170814.css b/.history/src/Sidebar_20200911170814.css
new file mode 100644
index 000000000..e75283961
--- /dev/null
+++ b/.history/src/Sidebar_20200911170814.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 90%;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170820.css b/.history/src/Sidebar_20200911170820.css
new file mode 100644
index 000000000..02a51a03d
--- /dev/null
+++ b/.history/src/Sidebar_20200911170820.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 50%;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170826.css b/.history/src/Sidebar_20200911170826.css
new file mode 100644
index 000000000..e75283961
--- /dev/null
+++ b/.history/src/Sidebar_20200911170826.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 90%;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170827.css b/.history/src/Sidebar_20200911170827.css
new file mode 100644
index 000000000..957e73544
--- /dev/null
+++ b/.history/src/Sidebar_20200911170827.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 950%;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170829.css b/.history/src/Sidebar_20200911170829.css
new file mode 100644
index 000000000..f62931e16
--- /dev/null
+++ b/.history/src/Sidebar_20200911170829.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 95%;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170836.css b/.history/src/Sidebar_20200911170836.css
new file mode 100644
index 000000000..84d79ba76
--- /dev/null
+++ b/.history/src/Sidebar_20200911170836.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281.5px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170837.css b/.history/src/Sidebar_20200911170837.css
new file mode 100644
index 000000000..b62a058e2
--- /dev/null
+++ b/.history/src/Sidebar_20200911170837.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170848.css b/.history/src/Sidebar_20200911170848.css
new file mode 100644
index 000000000..7bcff87ea
--- /dev/null
+++ b/.history/src/Sidebar_20200911170848.css
@@ -0,0 +1,81 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170851.css b/.history/src/Sidebar_20200911170851.css
new file mode 100644
index 000000000..b62a058e2
--- /dev/null
+++ b/.history/src/Sidebar_20200911170851.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: rgba(0, 0, 0, 0.3);
+}
diff --git a/.history/src/Sidebar_20200911170939.js b/.history/src/Sidebar_20200911170939.js
new file mode 100644
index 000000000..adf6d7c1a
--- /dev/null
+++ b/.history/src/Sidebar_20200911170939.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911170940.js b/.history/src/Sidebar_20200911170940.js
new file mode 100644
index 000000000..4a049df4c
--- /dev/null
+++ b/.history/src/Sidebar_20200911170940.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911170942.js b/.history/src/Sidebar_20200911170942.js
new file mode 100644
index 000000000..ba12e487d
--- /dev/null
+++ b/.history/src/Sidebar_20200911170942.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911170945.js b/.history/src/Sidebar_20200911170945.js
new file mode 100644
index 000000000..aa2650f7e
--- /dev/null
+++ b/.history/src/Sidebar_20200911170945.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911170947.js b/.history/src/Sidebar_20200911170947.js
new file mode 100644
index 000000000..9954a5300
--- /dev/null
+++ b/.history/src/Sidebar_20200911170947.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911170952.js b/.history/src/Sidebar_20200911170952.js
new file mode 100644
index 000000000..fd2accd69
--- /dev/null
+++ b/.history/src/Sidebar_20200911170952.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911170955.js b/.history/src/Sidebar_20200911170955.js
new file mode 100644
index 000000000..2c1d1d280
--- /dev/null
+++ b/.history/src/Sidebar_20200911170955.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911170958.js b/.history/src/Sidebar_20200911170958.js
new file mode 100644
index 000000000..c42a3ea49
--- /dev/null
+++ b/.history/src/Sidebar_20200911170958.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171011.js b/.history/src/Sidebar_20200911171011.js
new file mode 100644
index 000000000..86fd2bbac
--- /dev/null
+++ b/.history/src/Sidebar_20200911171011.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171013.js b/.history/src/Sidebar_20200911171013.js
new file mode 100644
index 000000000..e5da65ee9
--- /dev/null
+++ b/.history/src/Sidebar_20200911171013.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171026.js b/.history/src/Sidebar_20200911171026.js
new file mode 100644
index 000000000..e764d6c5d
--- /dev/null
+++ b/.history/src/Sidebar_20200911171026.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171102.js b/.history/src/Sidebar_20200911171102.js
new file mode 100644
index 000000000..bba68ca38
--- /dev/null
+++ b/.history/src/Sidebar_20200911171102.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171103.js b/.history/src/Sidebar_20200911171103.js
new file mode 100644
index 000000000..649fce276
--- /dev/null
+++ b/.history/src/Sidebar_20200911171103.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171105.js b/.history/src/Sidebar_20200911171105.js
new file mode 100644
index 000000000..6ea52edeb
--- /dev/null
+++ b/.history/src/Sidebar_20200911171105.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171108.js b/.history/src/Sidebar_20200911171108.js
new file mode 100644
index 000000000..02c8f8d2b
--- /dev/null
+++ b/.history/src/Sidebar_20200911171108.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171110.js b/.history/src/Sidebar_20200911171110.js
new file mode 100644
index 000000000..9a3242ca0
--- /dev/null
+++ b/.history/src/Sidebar_20200911171110.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171113.js b/.history/src/Sidebar_20200911171113.js
new file mode 100644
index 000000000..adf6d7c1a
--- /dev/null
+++ b/.history/src/Sidebar_20200911171113.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171114.js b/.history/src/Sidebar_20200911171114.js
new file mode 100644
index 000000000..649fce276
--- /dev/null
+++ b/.history/src/Sidebar_20200911171114.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171242.css b/.history/src/Sidebar_20200911171242.css
new file mode 100644
index 000000000..d5e861016
--- /dev/null
+++ b/.history/src/Sidebar_20200911171242.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: 000;
+}
diff --git a/.history/src/Sidebar_20200911171244.css b/.history/src/Sidebar_20200911171244.css
new file mode 100644
index 000000000..c03908f27
--- /dev/null
+++ b/.history/src/Sidebar_20200911171244.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: 000000;
+}
diff --git a/.history/src/Sidebar_20200911171245.css b/.history/src/Sidebar_20200911171245.css
new file mode 100644
index 000000000..934e182c3
--- /dev/null
+++ b/.history/src/Sidebar_20200911171245.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: 000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171249.css b/.history/src/Sidebar_20200911171249.css
new file mode 100644
index 000000000..c38dd11f8
--- /dev/null
+++ b/.history/src/Sidebar_20200911171249.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171330.css b/.history/src/Sidebar_20200911171330.css
new file mode 100644
index 000000000..8906daa2a
--- /dev/null
+++ b/.history/src/Sidebar_20200911171330.css
@@ -0,0 +1,83 @@
+#page-wrap {
+ text-align: center;
+
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171334.css b/.history/src/Sidebar_20200911171334.css
new file mode 100644
index 000000000..ff34a50a6
--- /dev/null
+++ b/.history/src/Sidebar_20200911171334.css
@@ -0,0 +1,83 @@
+#page-wrap {
+ text-align: center;
+ height
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171336.css b/.history/src/Sidebar_20200911171336.css
new file mode 100644
index 000000000..176d3aaf0
--- /dev/null
+++ b/.history/src/Sidebar_20200911171336.css
@@ -0,0 +1,83 @@
+#page-wrap {
+ text-align: center;
+ height: 100%;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171344.css b/.history/src/Sidebar_20200911171344.css
new file mode 100644
index 000000000..c38dd11f8
--- /dev/null
+++ b/.history/src/Sidebar_20200911171344.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171418.css b/.history/src/Sidebar_20200911171418.css
new file mode 100644
index 000000000..9148eb779
--- /dev/null
+++ b/.history/src/Sidebar_20200911171418.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: ##131921;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171421.css b/.history/src/Sidebar_20200911171421.css
new file mode 100644
index 000000000..72841173b
--- /dev/null
+++ b/.history/src/Sidebar_20200911171421.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #131921;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171433.css b/.history/src/Sidebar_20200911171433.css
new file mode 100644
index 000000000..c38dd11f8
--- /dev/null
+++ b/.history/src/Sidebar_20200911171433.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 0;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171448.css b/.history/src/Sidebar_20200911171448.css
new file mode 100644
index 000000000..4656f1a6e
--- /dev/null
+++ b/.history/src/Sidebar_20200911171448.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: 10;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171449.css b/.history/src/Sidebar_20200911171449.css
new file mode 100644
index 000000000..e6887dd76
--- /dev/null
+++ b/.history/src/Sidebar_20200911171449.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -10;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171455.css b/.history/src/Sidebar_20200911171455.css
new file mode 100644
index 000000000..6716f91c0
--- /dev/null
+++ b/.history/src/Sidebar_20200911171455.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -10px;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171510.css b/.history/src/Sidebar_20200911171510.css
new file mode 100644
index 000000000..6922937f7
--- /dev/null
+++ b/.history/src/Sidebar_20200911171510.css
@@ -0,0 +1,82 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -12px;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000CC;
+}
diff --git a/.history/src/Sidebar_20200911171705.css b/.history/src/Sidebar_20200911171705.css
new file mode 100644
index 000000000..07bb762b4
--- /dev/null
+++ b/.history/src/Sidebar_20200911171705.css
@@ -0,0 +1,86 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -12px;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 10px 10px 10px 10px;
+ -moz-border-radius: 10px 10px 10px 10px;
+ -webkit-border-radius: 10px 10px 10px 10px;
+ border: 0px none #000000;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911171726.css b/.history/src/Sidebar_20200911171726.css
new file mode 100644
index 000000000..91a4252f2
--- /dev/null
+++ b/.history/src/Sidebar_20200911171726.css
@@ -0,0 +1,84 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -12px;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 10px;
+ border: 0px none #000000;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911171741.css b/.history/src/Sidebar_20200911171741.css
new file mode 100644
index 000000000..bbd96a0d8
--- /dev/null
+++ b/.history/src/Sidebar_20200911171741.css
@@ -0,0 +1,84 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -12px;
+ width: 281px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: 0px none #000000;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911171753.css b/.history/src/Sidebar_20200911171753.css
new file mode 100644
index 000000000..01acd07a5
--- /dev/null
+++ b/.history/src/Sidebar_20200911171753.css
@@ -0,0 +1,84 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -12px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: 0px none #000000;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911171801.css b/.history/src/Sidebar_20200911171801.css
new file mode 100644
index 000000000..efd801490
--- /dev/null
+++ b/.history/src/Sidebar_20200911171801.css
@@ -0,0 +1,84 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -13px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: 0px none #000000;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911171806.css b/.history/src/Sidebar_20200911171806.css
new file mode 100644
index 000000000..ddc6ba125
--- /dev/null
+++ b/.history/src/Sidebar_20200911171806.css
@@ -0,0 +1,84 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: 0px none #000000;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911171905.css b/.history/src/Sidebar_20200911171905.css
new file mode 100644
index 000000000..e02712beb
--- /dev/null
+++ b/.history/src/Sidebar_20200911171905.css
@@ -0,0 +1,84 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911171930.js b/.history/src/Sidebar_20200911171930.js
new file mode 100644
index 000000000..fc35852b5
--- /dev/null
+++ b/.history/src/Sidebar_20200911171930.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171947.js b/.history/src/Sidebar_20200911171947.js
new file mode 100644
index 000000000..b007dacbd
--- /dev/null
+++ b/.history/src/Sidebar_20200911171947.js
@@ -0,0 +1,28 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171948.js b/.history/src/Sidebar_20200911171948.js
new file mode 100644
index 000000000..8c9593506
--- /dev/null
+++ b/.history/src/Sidebar_20200911171948.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171950.js b/.history/src/Sidebar_20200911171950.js
new file mode 100644
index 000000000..039dcd93c
--- /dev/null
+++ b/.history/src/Sidebar_20200911171950.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911171952.js b/.history/src/Sidebar_20200911171952.js
new file mode 100644
index 000000000..25f4d9bb3
--- /dev/null
+++ b/.history/src/Sidebar_20200911171952.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172009.css b/.history/src/Sidebar_20200911172009.css
new file mode 100644
index 000000000..b18742802
--- /dev/null
+++ b/.history/src/Sidebar_20200911172009.css
@@ -0,0 +1,86 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172012.css b/.history/src/Sidebar_20200911172012.css
new file mode 100644
index 000000000..112f95f0b
--- /dev/null
+++ b/.history/src/Sidebar_20200911172012.css
@@ -0,0 +1,88 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+
+ p{
+ tect
+ }
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172018.css b/.history/src/Sidebar_20200911172018.css
new file mode 100644
index 000000000..37bedaed5
--- /dev/null
+++ b/.history/src/Sidebar_20200911172018.css
@@ -0,0 +1,88 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+
+ p{
+ text-
+ }
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172020.css b/.history/src/Sidebar_20200911172020.css
new file mode 100644
index 000000000..a018e8e54
--- /dev/null
+++ b/.history/src/Sidebar_20200911172020.css
@@ -0,0 +1,88 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+
+ p{
+ text-align: ;
+ }
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172021.css b/.history/src/Sidebar_20200911172021.css
new file mode 100644
index 000000000..a9ace9260
--- /dev/null
+++ b/.history/src/Sidebar_20200911172021.css
@@ -0,0 +1,88 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+
+ p{
+ text-align: center;
+ }
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172028.css b/.history/src/Sidebar_20200911172028.css
new file mode 100644
index 000000000..d7def8aa9
--- /dev/null
+++ b/.history/src/Sidebar_20200911172028.css
@@ -0,0 +1,85 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172031.css b/.history/src/Sidebar_20200911172031.css
new file mode 100644
index 000000000..d7def8aa9
--- /dev/null
+++ b/.history/src/Sidebar_20200911172031.css
@@ -0,0 +1,85 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172033.css b/.history/src/Sidebar_20200911172033.css
new file mode 100644
index 000000000..b1627cde8
--- /dev/null
+++ b/.history/src/Sidebar_20200911172033.css
@@ -0,0 +1,85 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+text
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172036.css b/.history/src/Sidebar_20200911172036.css
new file mode 100644
index 000000000..e7537eb5f
--- /dev/null
+++ b/.history/src/Sidebar_20200911172036.css
@@ -0,0 +1,85 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+text-align: ;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172038.css b/.history/src/Sidebar_20200911172038.css
new file mode 100644
index 000000000..051b48f5e
--- /dev/null
+++ b/.history/src/Sidebar_20200911172038.css
@@ -0,0 +1,85 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+text-align: center;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172045.css b/.history/src/Sidebar_20200911172045.css
new file mode 100644
index 000000000..522f0b609
--- /dev/null
+++ b/.history/src/Sidebar_20200911172045.css
@@ -0,0 +1,85 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: center;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172055.css b/.history/src/Sidebar_20200911172055.css
new file mode 100644
index 000000000..eef8f54e7
--- /dev/null
+++ b/.history/src/Sidebar_20200911172055.css
@@ -0,0 +1,85 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 10px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172108.css b/.history/src/Sidebar_20200911172108.css
new file mode 100644
index 000000000..34a0ca0dc
--- /dev/null
+++ b/.history/src/Sidebar_20200911172108.css
@@ -0,0 +1,85 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172141.css b/.history/src/Sidebar_20200911172141.css
new file mode 100644
index 000000000..b4b089826
--- /dev/null
+++ b/.history/src/Sidebar_20200911172141.css
@@ -0,0 +1,86 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172219.css b/.history/src/Sidebar_20200911172219.css
new file mode 100644
index 000000000..32bc0c2fd
--- /dev/null
+++ b/.history/src/Sidebar_20200911172219.css
@@ -0,0 +1,86 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 4px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172227.css b/.history/src/Sidebar_20200911172227.css
new file mode 100644
index 000000000..b4b089826
--- /dev/null
+++ b/.history/src/Sidebar_20200911172227.css
@@ -0,0 +1,86 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172338.js b/.history/src/Sidebar_20200911172338.js
new file mode 100644
index 000000000..5ce037f86
--- /dev/null
+++ b/.history/src/Sidebar_20200911172338.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172350.js b/.history/src/Sidebar_20200911172350.js
new file mode 100644
index 000000000..bf39dc0e6
--- /dev/null
+++ b/.history/src/Sidebar_20200911172350.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172352.js b/.history/src/Sidebar_20200911172352.js
new file mode 100644
index 000000000..e544e9975
--- /dev/null
+++ b/.history/src/Sidebar_20200911172352.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172408.js b/.history/src/Sidebar_20200911172408.js
new file mode 100644
index 000000000..fcb6e620c
--- /dev/null
+++ b/.history/src/Sidebar_20200911172408.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172702.js b/.history/src/Sidebar_20200911172702.js
new file mode 100644
index 000000000..45dba82bc
--- /dev/null
+++ b/.history/src/Sidebar_20200911172702.js
@@ -0,0 +1,15 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172706.js b/.history/src/Sidebar_20200911172706.js
new file mode 100644
index 000000000..301d1d61a
--- /dev/null
+++ b/.history/src/Sidebar_20200911172706.js
@@ -0,0 +1,16 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172711.js b/.history/src/Sidebar_20200911172711.js
new file mode 100644
index 000000000..fcb6e620c
--- /dev/null
+++ b/.history/src/Sidebar_20200911172711.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172717.js b/.history/src/Sidebar_20200911172717.js
new file mode 100644
index 000000000..c2345f909
--- /dev/null
+++ b/.history/src/Sidebar_20200911172717.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172718.js b/.history/src/Sidebar_20200911172718.js
new file mode 100644
index 000000000..979c7c80f
--- /dev/null
+++ b/.history/src/Sidebar_20200911172718.js
@@ -0,0 +1,19 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172719.js b/.history/src/Sidebar_20200911172719.js
new file mode 100644
index 000000000..ec07070cd
--- /dev/null
+++ b/.history/src/Sidebar_20200911172719.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172800.css b/.history/src/Sidebar_20200911172800.css
new file mode 100644
index 000000000..40f64bb7a
--- /dev/null
+++ b/.history/src/Sidebar_20200911172800.css
@@ -0,0 +1,88 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172803.css b/.history/src/Sidebar_20200911172803.css
new file mode 100644
index 000000000..0e46159b1
--- /dev/null
+++ b/.history/src/Sidebar_20200911172803.css
@@ -0,0 +1,90 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172810.css b/.history/src/Sidebar_20200911172810.css
new file mode 100644
index 000000000..0e46159b1
--- /dev/null
+++ b/.history/src/Sidebar_20200911172810.css
@@ -0,0 +1,90 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172814.css b/.history/src/Sidebar_20200911172814.css
new file mode 100644
index 000000000..f34943494
--- /dev/null
+++ b/.history/src/Sidebar_20200911172814.css
@@ -0,0 +1,90 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ h2
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172817.css b/.history/src/Sidebar_20200911172817.css
new file mode 100644
index 000000000..0e46159b1
--- /dev/null
+++ b/.history/src/Sidebar_20200911172817.css
@@ -0,0 +1,90 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172821.css b/.history/src/Sidebar_20200911172821.css
new file mode 100644
index 000000000..810ac0ec6
--- /dev/null
+++ b/.history/src/Sidebar_20200911172821.css
@@ -0,0 +1,90 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172822.css b/.history/src/Sidebar_20200911172822.css
new file mode 100644
index 000000000..98fdcd9aa
--- /dev/null
+++ b/.history/src/Sidebar_20200911172822.css
@@ -0,0 +1,90 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size:
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172829.css b/.history/src/Sidebar_20200911172829.css
new file mode 100644
index 000000000..c39ef0e13
--- /dev/null
+++ b/.history/src/Sidebar_20200911172829.css
@@ -0,0 +1,90 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172836.css b/.history/src/Sidebar_20200911172836.css
new file mode 100644
index 000000000..272f0c19b
--- /dev/null
+++ b/.history/src/Sidebar_20200911172836.css
@@ -0,0 +1,91 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding:
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172840.css b/.history/src/Sidebar_20200911172840.css
new file mode 100644
index 000000000..c61d4339b
--- /dev/null
+++ b/.history/src/Sidebar_20200911172840.css
@@ -0,0 +1,91 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172842.css b/.history/src/Sidebar_20200911172842.css
new file mode 100644
index 000000000..e20ff10aa
--- /dev/null
+++ b/.history/src/Sidebar_20200911172842.css
@@ -0,0 +1,91 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172845.css b/.history/src/Sidebar_20200911172845.css
new file mode 100644
index 000000000..f2291fa0a
--- /dev/null
+++ b/.history/src/Sidebar_20200911172845.css
@@ -0,0 +1,91 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172847.css b/.history/src/Sidebar_20200911172847.css
new file mode 100644
index 000000000..9d97553a5
--- /dev/null
+++ b/.history/src/Sidebar_20200911172847.css
@@ -0,0 +1,91 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172850.css b/.history/src/Sidebar_20200911172850.css
new file mode 100644
index 000000000..9837859ee
--- /dev/null
+++ b/.history/src/Sidebar_20200911172850.css
@@ -0,0 +1,91 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172851.css b/.history/src/Sidebar_20200911172851.css
new file mode 100644
index 000000000..41d385ab8
--- /dev/null
+++ b/.history/src/Sidebar_20200911172851.css
@@ -0,0 +1,91 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172853.css b/.history/src/Sidebar_20200911172853.css
new file mode 100644
index 000000000..70851f544
--- /dev/null
+++ b/.history/src/Sidebar_20200911172853.css
@@ -0,0 +1,91 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172905.css b/.history/src/Sidebar_20200911172905.css
new file mode 100644
index 000000000..45358d9a2
--- /dev/null
+++ b/.history/src/Sidebar_20200911172905.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172908.css b/.history/src/Sidebar_20200911172908.css
new file mode 100644
index 000000000..e611e0a59
--- /dev/null
+++ b/.history/src/Sidebar_20200911172908.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172910.css b/.history/src/Sidebar_20200911172910.css
new file mode 100644
index 000000000..bfb11c7be
--- /dev/null
+++ b/.history/src/Sidebar_20200911172910.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: ;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172919.css b/.history/src/Sidebar_20200911172919.css
new file mode 100644
index 000000000..bfb11c7be
--- /dev/null
+++ b/.history/src/Sidebar_20200911172919.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: ;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172923.css b/.history/src/Sidebar_20200911172923.css
new file mode 100644
index 000000000..e3ff5b7f5
--- /dev/null
+++ b/.history/src/Sidebar_20200911172923.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911172949.js b/.history/src/Sidebar_20200911172949.js
new file mode 100644
index 000000000..feb8de79a
--- /dev/null
+++ b/.history/src/Sidebar_20200911172949.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911172951.js b/.history/src/Sidebar_20200911172951.js
new file mode 100644
index 000000000..62d6fd1ba
--- /dev/null
+++ b/.history/src/Sidebar_20200911172951.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173003.js b/.history/src/Sidebar_20200911173003.js
new file mode 100644
index 000000000..d4abaee2d
--- /dev/null
+++ b/.history/src/Sidebar_20200911173003.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173004.js b/.history/src/Sidebar_20200911173004.js
new file mode 100644
index 000000000..42d2ddff8
--- /dev/null
+++ b/.history/src/Sidebar_20200911173004.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173017.js b/.history/src/Sidebar_20200911173017.js
new file mode 100644
index 000000000..492fde23b
--- /dev/null
+++ b/.history/src/Sidebar_20200911173017.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173102.css b/.history/src/Sidebar_20200911173102.css
new file mode 100644
index 000000000..92e00f760
--- /dev/null
+++ b/.history/src/Sidebar_20200911173102.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 12px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173108.css b/.history/src/Sidebar_20200911173108.css
new file mode 100644
index 000000000..2a2ec739a
--- /dev/null
+++ b/.history/src/Sidebar_20200911173108.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 13px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173114.css b/.history/src/Sidebar_20200911173114.css
new file mode 100644
index 000000000..92e00f760
--- /dev/null
+++ b/.history/src/Sidebar_20200911173114.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 12px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173120.css b/.history/src/Sidebar_20200911173120.css
new file mode 100644
index 000000000..e3ff5b7f5
--- /dev/null
+++ b/.history/src/Sidebar_20200911173120.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173136.css b/.history/src/Sidebar_20200911173136.css
new file mode 100644
index 000000000..e72581ac0
--- /dev/null
+++ b/.history/src/Sidebar_20200911173136.css
@@ -0,0 +1,93 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ high
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173137.css b/.history/src/Sidebar_20200911173137.css
new file mode 100644
index 000000000..c6055343a
--- /dev/null
+++ b/.history/src/Sidebar_20200911173137.css
@@ -0,0 +1,93 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ highgt
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173140.css b/.history/src/Sidebar_20200911173140.css
new file mode 100644
index 000000000..4e0dd81b1
--- /dev/null
+++ b/.history/src/Sidebar_20200911173140.css
@@ -0,0 +1,93 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ height: ;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173142.css b/.history/src/Sidebar_20200911173142.css
new file mode 100644
index 000000000..d4337bb7e
--- /dev/null
+++ b/.history/src/Sidebar_20200911173142.css
@@ -0,0 +1,93 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ height: auto;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173151.css b/.history/src/Sidebar_20200911173151.css
new file mode 100644
index 000000000..03b3243e6
--- /dev/null
+++ b/.history/src/Sidebar_20200911173151.css
@@ -0,0 +1,93 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ height: 25px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173155.css b/.history/src/Sidebar_20200911173155.css
new file mode 100644
index 000000000..03b3243e6
--- /dev/null
+++ b/.history/src/Sidebar_20200911173155.css
@@ -0,0 +1,93 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ height: 25px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173159.css b/.history/src/Sidebar_20200911173159.css
new file mode 100644
index 000000000..0f3271d6a
--- /dev/null
+++ b/.history/src/Sidebar_20200911173159.css
@@ -0,0 +1,93 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ height: 125px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173207.css b/.history/src/Sidebar_20200911173207.css
new file mode 100644
index 000000000..7f0851b16
--- /dev/null
+++ b/.history/src/Sidebar_20200911173207.css
@@ -0,0 +1,93 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ height: 45px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173218.css b/.history/src/Sidebar_20200911173218.css
new file mode 100644
index 000000000..0ff68c976
--- /dev/null
+++ b/.history/src/Sidebar_20200911173218.css
@@ -0,0 +1,93 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+ color: white;
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ height: 35px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173311.js b/.history/src/Sidebar_20200911173311.js
new file mode 100644
index 000000000..afd0d4ace
--- /dev/null
+++ b/.history/src/Sidebar_20200911173311.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173314.js b/.history/src/Sidebar_20200911173314.js
new file mode 100644
index 000000000..4f262f190
--- /dev/null
+++ b/.history/src/Sidebar_20200911173314.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173356.js b/.history/src/Sidebar_20200911173356.js
new file mode 100644
index 000000000..c5e0ff661
--- /dev/null
+++ b/.history/src/Sidebar_20200911173356.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173358.js b/.history/src/Sidebar_20200911173358.js
new file mode 100644
index 000000000..4f262f190
--- /dev/null
+++ b/.history/src/Sidebar_20200911173358.js
@@ -0,0 +1,18 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173439.js b/.history/src/Sidebar_20200911173439.js
new file mode 100644
index 000000000..da4bba7c9
--- /dev/null
+++ b/.history/src/Sidebar_20200911173439.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173442.js b/.history/src/Sidebar_20200911173442.js
new file mode 100644
index 000000000..36310a47b
--- /dev/null
+++ b/.history/src/Sidebar_20200911173442.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173443.js b/.history/src/Sidebar_20200911173443.js
new file mode 100644
index 000000000..da4bba7c9
--- /dev/null
+++ b/.history/src/Sidebar_20200911173443.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173447.js b/.history/src/Sidebar_20200911173447.js
new file mode 100644
index 000000000..824f129a4
--- /dev/null
+++ b/.history/src/Sidebar_20200911173447.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173448.js b/.history/src/Sidebar_20200911173448.js
new file mode 100644
index 000000000..9b73b894a
--- /dev/null
+++ b/.history/src/Sidebar_20200911173448.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173450.js b/.history/src/Sidebar_20200911173450.js
new file mode 100644
index 000000000..da4bba7c9
--- /dev/null
+++ b/.history/src/Sidebar_20200911173450.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173452.js b/.history/src/Sidebar_20200911173452.js
new file mode 100644
index 000000000..9d390a4f0
--- /dev/null
+++ b/.history/src/Sidebar_20200911173452.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173457.js b/.history/src/Sidebar_20200911173457.js
new file mode 100644
index 000000000..d6b00cf27
--- /dev/null
+++ b/.history/src/Sidebar_20200911173457.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173500.js b/.history/src/Sidebar_20200911173500.js
new file mode 100644
index 000000000..f6957f789
--- /dev/null
+++ b/.history/src/Sidebar_20200911173500.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173505.js b/.history/src/Sidebar_20200911173505.js
new file mode 100644
index 000000000..0fc18d8b9
--- /dev/null
+++ b/.history/src/Sidebar_20200911173505.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};
diff --git a/.history/src/Sidebar_20200911173746.css b/.history/src/Sidebar_20200911173746.css
new file mode 100644
index 000000000..b3910b8ca
--- /dev/null
+++ b/.history/src/Sidebar_20200911173746.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ height: 35px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.history/src/Sidebar_20200911173747.css b/.history/src/Sidebar_20200911173747.css
new file mode 100644
index 000000000..8a43a7d66
--- /dev/null
+++ b/.history/src/Sidebar_20200911173747.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ height: 35px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 000000000..3fa67f8ac
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,19 @@
+{
+ "workbench.colorCustomizations": {
+ "activityBar.activeBackground": "#dbfae0",
+ "activityBar.activeBorder": "#9f8fef",
+ "activityBar.background": "#dbfae0",
+ "activityBar.foreground": "#15202b",
+ "activityBar.inactiveForeground": "#15202b99",
+ "activityBarBadge.background": "#9f8fef",
+ "activityBarBadge.foreground": "#15202b",
+ "statusBar.background": "#aff3b9",
+ "statusBar.foreground": "#15202b",
+ "statusBarItem.hoverBackground": "#83ec92",
+ "titleBar.activeBackground": "#aff3b9",
+ "titleBar.activeForeground": "#15202b",
+ "titleBar.inactiveBackground": "#aff3b999",
+ "titleBar.inactiveForeground": "#15202b99"
+ },
+ "peacock.color": "#aff3b9"
+}
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
index f38fe5e8b..57ca942a1 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -2823,6 +2823,12 @@
"resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz",
"integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM="
},
+ "amdefine": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
+ "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
+ "optional": true
+ },
"ansi-colors": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz",
@@ -3013,6 +3019,58 @@
"resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
"integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
},
+ "ast-transform": {
+ "version": "0.0.0",
+ "resolved": "https://registry.npmjs.org/ast-transform/-/ast-transform-0.0.0.tgz",
+ "integrity": "sha1-dJRAWIh9goPhidlUYAlHvJj+AGI=",
+ "requires": {
+ "escodegen": "~1.2.0",
+ "esprima": "~1.0.4",
+ "through": "~2.3.4"
+ },
+ "dependencies": {
+ "escodegen": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.2.0.tgz",
+ "integrity": "sha1-Cd55Z3kcyVi3+Jot220jRRrzJ+E=",
+ "requires": {
+ "esprima": "~1.0.4",
+ "estraverse": "~1.5.0",
+ "esutils": "~1.0.0",
+ "source-map": "~0.1.30"
+ }
+ },
+ "esprima": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz",
+ "integrity": "sha1-n1V+CPw7TSbs6d00+Pv0drYlha0="
+ },
+ "estraverse": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.5.1.tgz",
+ "integrity": "sha1-hno+jlip+EYYr7bC3bzZFrfLr3E="
+ },
+ "esutils": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.0.0.tgz",
+ "integrity": "sha1-gVHTWOIMisx/t0XnRywAJf5JZXA="
+ },
+ "source-map": {
+ "version": "0.1.43",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz",
+ "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=",
+ "optional": true,
+ "requires": {
+ "amdefine": ">=0.0.4"
+ }
+ }
+ }
+ },
+ "ast-types": {
+ "version": "0.7.8",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.7.8.tgz",
+ "integrity": "sha1-kC0uDWDQcb3NRtwRXhgJ7RHBOKk="
+ },
"ast-types-flow": {
"version": "0.0.7",
"resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
@@ -3762,6 +3820,16 @@
"safe-buffer": "^5.1.2"
}
},
+ "browserify-optional": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/browserify-optional/-/browserify-optional-1.0.1.tgz",
+ "integrity": "sha1-HhNyLP3g2F8SFnbCpyztUzoBiGk=",
+ "requires": {
+ "ast-transform": "0.0.0",
+ "ast-types": "^0.7.0",
+ "browser-resolve": "^1.8.1"
+ }
+ },
"browserify-rsa": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz",
@@ -4116,6 +4184,11 @@
}
}
},
+ "classnames": {
+ "version": "2.2.6",
+ "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz",
+ "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q=="
+ },
"clean-css": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz",
@@ -6024,6 +6097,11 @@
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
"integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
},
+ "eve": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/eve/-/eve-0.5.4.tgz",
+ "integrity": "sha1-Z9CAuXJSkdfjieNMJoYN2X8d66o="
+ },
"event-target-shim": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
@@ -11381,6 +11459,18 @@
"whatwg-fetch": "^3.0.0"
}
},
+ "react-burger-menu": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/react-burger-menu/-/react-burger-menu-2.7.1.tgz",
+ "integrity": "sha512-WJiypBIsX6WNF31CabHhPqvsYygXxdWLPhK+ue84MNuWWL/x5c6M/1UfiIHpX5ZuuQ4MghzzpmYKiY6PEdsr8Q==",
+ "requires": {
+ "browserify-optional": "^1.0.0",
+ "classnames": "^2.2.6",
+ "eve": "~0.5.1",
+ "prop-types": "^15.7.2",
+ "snapsvg-cjs": "0.0.6"
+ }
+ },
"react-currency-format": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/react-currency-format/-/react-currency-format-1.0.0.tgz",
@@ -12716,6 +12806,22 @@
"kind-of": "^3.2.0"
}
},
+ "snapsvg": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/snapsvg/-/snapsvg-0.5.1.tgz",
+ "integrity": "sha1-DK9Sx5GJopB0b8RGzF6GP2vd3+M=",
+ "requires": {
+ "eve": "~0.5.1"
+ }
+ },
+ "snapsvg-cjs": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/snapsvg-cjs/-/snapsvg-cjs-0.0.6.tgz",
+ "integrity": "sha1-Oy9WryVz09Nkw+1b+IhXRfTS3eE=",
+ "requires": {
+ "snapsvg": "0.5.1"
+ }
+ },
"sockjs": {
"version": "0.3.20",
"resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.20.tgz",
diff --git a/package.json b/package.json
index d9fa4acab..3735c5d11 100644
--- a/package.json
+++ b/package.json
@@ -14,6 +14,7 @@
"firebase": "^7.19.1",
"moment": "^2.27.0",
"react": "^16.13.1",
+ "react-burger-menu": "^2.7.1",
"react-currency-format": "^1.0.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
diff --git a/src/Header.js b/src/Header.js
index ca8a2a44a..04acfbf99 100644
--- a/src/Header.js
+++ b/src/Header.js
@@ -1,10 +1,12 @@
-import React from "react";
-import "./Header.css";
-import SearchIcon from "@material-ui/icons/Search";
-import ShoppingBasketIcon from "@material-ui/icons/ShoppingBasket";
-import { Link } from "react-router-dom";
-import { useStateValue } from "./StateProvider";
-import { auth } from "./firebase";
+import React from 'react';
+import './Header.css';
+import SearchIcon from '@material-ui/icons/Search';
+import ShoppingBasketIcon from '@material-ui/icons/ShoppingBasket';
+import { Link } from 'react-router-dom';
+import { useStateValue } from './StateProvider';
+import { auth } from './firebase';
+
+import Sidebar from './Sidebar';
function Header() {
const [{ basket, user }, dispatch] = useStateValue();
@@ -13,47 +15,51 @@ function Header() {
if (user) {
auth.signOut();
}
- }
+ };
return (
-
-
+
+
+
-
-
-
+
+
+
-
+
-
-
Hello {!user ? 'Guest' : user.email}
-
{user ? 'Sign Out' : 'Sign In'}
+
+
+ Hello {!user ? 'Guest' : user.email}
+
+
+ {user ? 'Sign Out' : 'Sign In'}
+
-
-
Returns
-
& Orders
+
+ Returns
+ & Orders
-
-
-
Your
-
Prime
+
+ Your
+ Prime
-
-
+
+
-
+
{basket?.length}
diff --git a/src/Sidebar.css b/src/Sidebar.css
new file mode 100644
index 000000000..8a43a7d66
--- /dev/null
+++ b/src/Sidebar.css
@@ -0,0 +1,92 @@
+#page-wrap {
+ text-align: center;
+
+ /* Prevent sidebar from showing a scrollbar on page */
+ overflow: auto;
+}
+
+/* Individual item */
+.bm-item {
+ display: inline-block;
+
+ /* Our sidebar item styling */
+ text-decoration: none;
+ margin-bottom: 10px;
+ color: #d1d1d1;
+ transition: color 0.2s;
+}
+
+/* Change color on hover */
+.bm-item:hover {
+}
+
+/* The rest copied directly from react-burger-menu docs */
+
+/* Position and sizing of burger button */
+.bm-burger-button {
+ position: relative;
+ width: 36px;
+ height: 30px;
+ left: 6px;
+ border: 1px solid #fff;
+}
+
+/* Color/shape of burger icon bars */
+.bm-burger-bars {
+ background: #fff;
+}
+
+/* Position and sizing of clickable cross button */
+.bm-cross-button {
+ height: 24px;
+ width: 24px;
+}
+
+/* Style for greeting header */
+.sidebar-header {
+ background-color: #232f3e;
+ padding: 10px;
+ top: -14px;
+ width: 282px;
+ height: 35px;
+ position: absolute;
+ margin-left: -30px;
+ margin-right: -15px;
+ border-radius: 1px;
+ border: none !important;
+ text-align: 15px;
+ cursor: pointer;
+}
+
+.menu-title {
+ font-size: 14px;
+ padding: 13px 20px 13px 36px;
+ color: #969397;
+}
+
+/* Color/shape of close button cross */
+.bm-cross {
+ background: #bdc3c7;
+}
+
+/* General sidebar styles */
+.bm-menu {
+ background: #fff;
+ padding: 2.5em 1.5em 0;
+ font-size: 1.15em;
+}
+
+/* Morph shape necessary with bubble or elastic */
+.bm-morph-shape {
+ fill: #373a47;
+}
+
+/* Wrapper for item list */
+.bm-item-list {
+ color: #b8b7ad;
+}
+
+/* Styling of overlay */
+.bm-overlay {
+ background: #000000cc;
+}
diff --git a/src/Sidebar.js b/src/Sidebar.js
new file mode 100644
index 000000000..0fc18d8b9
--- /dev/null
+++ b/src/Sidebar.js
@@ -0,0 +1,20 @@
+import React from 'react';
+import './Sidebar.css';
+import { slide as Menu } from 'react-burger-menu';
+
+export default (props) => {
+ return (
+ // Pass on our props
+
+ );
+};