diff --git a/portfolio/src/index.js b/portfolio/src/index.js index f037b25..bb5a81c 100644 --- a/portfolio/src/index.js +++ b/portfolio/src/index.js @@ -1,6 +1,7 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; +import './style.css' const root = ReactDOM.createRoot(document.getElementById('root')); root.render( diff --git a/portfolio/public/style.css b/portfolio/src/style.css similarity index 93% rename from portfolio/public/style.css rename to portfolio/src/style.css index ab7db21..8d9e151 100644 --- a/portfolio/public/style.css +++ b/portfolio/src/style.css @@ -1,37 +1,37 @@ -*{ - margin: 0; - padding: 0; - box-sizing: border-box; - text-decoration: none; - background: transparent; -} - -body{ - font-family: 'Ubuntu', sans-serif; - background: rgb(27, 29, 31); - color: white; - overflow: hidden; - overflow-y: auto; - - -} - -.page{ - display: flex; - flex-direction: column; - justify-content: space-between; - min-height: 100vh; -} - -p{ - color: rgb(129, 137, 146); -} - -.pageContent{ - margin: 2rem auto; - max-width: 70vw; -} - -@media screen and (max-width:1050px) { - .pageContent{max-width: 90vw;} -} +*{ + margin: 0; + padding: 0; + box-sizing: border-box; + text-decoration: none; + background: transparent; +} + +body{ + font-family: 'Ubuntu', sans-serif; + background: rgb(27, 29, 31); + color: white; + overflow: hidden; + overflow-y: auto; + + +} + +.page{ + display: flex; + flex-direction: column; + justify-content: space-between; + min-height: 100vh; +} + +p{ + color: rgb(129, 137, 146); +} + +.pageContent{ + margin: 2rem auto; + max-width: 70vw; +} + +@media screen and (max-width:1050px) { + .pageContent{max-width: 90vw;} +}