Skip to content

Commit

Permalink
Merge pull request #1313 from nishant0708/Student_card
Browse files Browse the repository at this point in the history
Gap between student card and footer  + Fixed Some darkmode Bugs  #1311
  • Loading branch information
thestarsahil authored Jul 30, 2024
2 parents 4a9be97 + 348cbfb commit 6e8997c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
7 changes: 6 additions & 1 deletion src/components/Student/Slots.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,17 @@
text-align: center;
min-height: 300px;
}

#dark .slots-container{
background-color: transparent;
}
.slots-title {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: #333;
}
#dark .slots-title {
color: white;
}

.slots-grid {
display: grid;
Expand Down
7 changes: 6 additions & 1 deletion src/components/Student/SocialLinks.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@
min-height: 300px;
border-radius: 10px;
}

#dark .social-links-container{
background-color: transparent;
}
.social-title {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: #333;
}
#dark .social-title {
color: white;
}

.social-links-container h2 {
font-size: 24px;
Expand Down
5 changes: 4 additions & 1 deletion src/components/Student/Student.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ color: white !important;
min-height: 100%;
background: #cecece;
}
#dark .single-student-info-header{
color: white;
}

.single-student-info-header {
text-align: center;
Expand Down Expand Up @@ -215,4 +218,4 @@ color: white !important;
.student-details-content .nav{
flex-wrap: wrap;
}
}
}
14 changes: 14 additions & 0 deletions src/components/Student/TechStack.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,19 @@
text-align: center;
min-height: 300px;
}
#dark .tech-stack-container{
background-color: transparent;
color: white;
}

.tech-stack-title {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: #333;
}
#dark .tech-stack-title{
color: white;
}

.tech-stack-grid {
display: grid;
Expand All @@ -25,6 +32,10 @@
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
#dark .tech-stack-item{
background-color: #000000;
color: white;
}

.tech-stack-item:hover {
transform: translateY(-5px);
Expand All @@ -39,6 +50,9 @@
font-size: 1.2rem;
color: #555;
}
#dark .tech-stack-name{
color: white;
}

@media (max-width: 768px) {
.tech-stack-title {
Expand Down

0 comments on commit 6e8997c

Please sign in to comment.