diff --git a/package.json b/package.json index 2051460..d4ad9d2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-website", - "version": "0.2.15", + "version": "0.2.16", "private": true, "dependencies": { "@fortawesome/fontawesome": "^1.1.8", diff --git a/src/components/ClearButton/index.css b/src/components/ClearButton/index.css index 7cc2cb0..c9c20e1 100644 --- a/src/components/ClearButton/index.css +++ b/src/components/ClearButton/index.css @@ -1,4 +1,6 @@ -.clear-button, .clear-button:link, .clear-button:visited { +.clear-button, +.clear-button:link, +.clear-button:visited { border: 2px solid rgb(59, 65, 82); border-radius: 2px; color: white; diff --git a/src/components/Header/index.css b/src/components/Header/index.css index cd3296e..e42c315 100644 --- a/src/components/Header/index.css +++ b/src/components/Header/index.css @@ -4,6 +4,7 @@ margin-bottom: -5px; width: 65%; } + .header-container h2 { margin-bottom: -5px; } diff --git a/src/containers/Contact/index.css b/src/containers/Contact/index.css index 571153a..9af7292 100644 --- a/src/containers/Contact/index.css +++ b/src/containers/Contact/index.css @@ -7,12 +7,13 @@ } .contact-container p { - @import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono'); + @import url("https://fonts.googleapis.com/css?family=IBM+Plex+Mono"); background-color: rgb(216, 221, 233); border-radius: 5px; color: rgb(46, 51, 64); - font-family: 'IBM Plex Mono', mono; - margin: 10% auto; + font-family: "IBM Plex Mono", mono; + margin: 10% auto; padding: 5px; + user-select: all; width: 150px; } diff --git a/src/containers/Experience/index.css b/src/containers/Experience/index.css index cce6efc..0e75fbe 100644 --- a/src/containers/Experience/index.css +++ b/src/containers/Experience/index.css @@ -29,8 +29,8 @@ margin-top: 0; } -@media screen and ( max-width: 500px ) { - .experience-container>div { +@media screen and (max-width: 500px) { + .experience-container > div { flex: 1 0 100%; margin: auto; } diff --git a/src/containers/Projects/index.css b/src/containers/Projects/index.css index 5870c08..f53182b 100644 --- a/src/containers/Projects/index.css +++ b/src/containers/Projects/index.css @@ -19,8 +19,7 @@ margin-top: 3%; } - -@media screen and ( max-width: 500px ) { +@media screen and (max-width: 500px) { .projects-container div { flex: 1 0 95%; } diff --git a/src/index.css b/src/index.css index 492b1f7..2c91d3d 100644 --- a/src/index.css +++ b/src/index.css @@ -1,6 +1,6 @@ body { background-color: rgb(46, 51, 65); color: rgb(254, 255, 254); - font-family: 'Gothic A1', sans-serif; + font-family: "Gothic A1", sans-serif; font-size: 100%; }