This project was bootstrapped with Create React App.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
/** Dependencies: **/ React router dom : npm i -D react-router-dom
/** Fonts: **/
Oswald & Courgette:
CSS rule for Oswal: font-family: 'Montserrat', sans-serif; font-family: 'Oswald', sans-serif; font-family: 'Roboto Slab', serif;/* Media Queries for view port */
/********************************************************************************************** For viewport >= 1200 ***********************************************************************************************/
@media only screen and (min-width: 1200px) and (max-width: 1700px) {
}
@media only screen and (max-width: 1200px) {
}
/********************************************************************************************** For viewport >= 992 ***********************************************************************************************/ @media only screen and (max-width: 992px) {
}
/********************************************************************************************** For viewport >= 768 ***********************************************************************************************/ @media only screen and (max-width: 768px) {
}
/********************************************************************************************** For viewport >= 600 ***********************************************************************************************/
@media only screen and (max-width: 600px) {
}