Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
109 changes: 108 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react-dom": "^18.2.0",
"react-router-dom": "^7.1.0"
},
"devDependencies": {
"@types/react": "^18.0.37",
Expand Down
179 changes: 154 additions & 25 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,42 +1,171 @@
#root {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}

.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
transition: filter 300ms;

@media (prefers-reduced-motion: no-preference) {
a:nth-of-type(2) .logo {
animation: logo-spin infinite 20s linear;
}
}



/* *** Nav Section *** */
nav {
margin: 10px;
height: 75px;
padding: 0px 20px;

background-color: #2563EB;
border-radius: 15px;

display: flex;
align-items: center;
}

nav p {
text-align: center;
font-weight: bold;
font-size: 17px;
color: #E2E8F0;

}
.logo:hover {
filter: drop-shadow(0 0 2em #646cffaa);

/* *** Home Page Section *** */
.page-container h1 {
font-size: 25px;
}
.logo.react:hover {
filter: drop-shadow(0 0 2em #61dafbaa);

.companies-container {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}

@keyframes logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
.each-company {
margin: 25px;
padding: 10px;

width: 350px;
height: 275px;

box-shadow: 0px 5px 3px #dfdfdf;

font-weight: bold;
font-size: 20px;
color: #000;

display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}

@media (prefers-reduced-motion: no-preference) {
a:nth-of-type(2) .logo {
animation: logo-spin infinite 20s linear;
}
.each-company img {
width: 100px;
margin-bottom: 55px;
}

/* *** Company Page Section *** */
.company-page {
padding: 20px;

display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
gap: 70px;
}

.company-page h1 {
font-size: 27px;
}

.image-container img {
width: 125px;
}

.image-container {
margin: 25px;
padding: 10px;

width: 250px;
height: 250px;

box-shadow: 0px 5px 3px #dfdfdf;

font-weight: bold;
font-size: 20px;
color: #000;

display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}

.company-info-container {
margin-bottom: 45px;
width: 75vw;

display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
gap: 15px;
}

.card {
padding: 2em;
.info-section {
width: 50%;
height: 275px;
}

.read-the-docs {
color: #888;
.info-section h2 {
font-size: 35px;
}

.info-section p {
text-align: center;
}

/* *** Tech Stack List Section *** */
.each-tech-stack img {
width: 70px;
}

.tech-stack-list {
width: 95vw;
padding: 10px;

overflow: hidden;

display: flex;
gap: 20px;
overflow-x: auto;
scrollbar-width: thin;
white-space: nowrap;
justify-content: space-evenly;
align-items: center;
}

.each-tech-stack {
margin: 25px;
padding: 10px;

width: 150px;
height: 150px;

box-shadow: 0px 5px 3px #dfdfdf;

font-weight: bold;
font-size: 20px;
color: #000;

display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
Loading