Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Footer CSS fixed #1212

Merged
merged 4 commits into from
Oct 20, 2024
Merged
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
149 changes: 46 additions & 103 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
::-webkit-scrollbar {
width: 16 px;
transition: width 0.3s;
width: 12px;
}

::-webkit-scrollbar-track {
background: var(--bg);
background: #000327;
}

::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, var(--primary), #fecdd3); /* Gradient from primary to a contrasting color */;
background-color: #95ff00;
border-radius: 10px;
border: 3px solid var(--card);
transition: background-color 0.3s;
border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, #334155, #f8fafc); /* Dark gradient for hover effect */;
background-color: #555;
}

/*html {
html {
scrollbar-width: thin;
scrollbar-color: #62ab9b #3c0751;
transition: scrollbar-color 0.3s;
}*/
scrollbar-color: #08ecbb #3c0751;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

box-sizing: border-box;


}

html {
Expand Down Expand Up @@ -436,25 +436,16 @@ body {
background-color: #ea6279;
transform: translateY(-6px);
transition: transform 0.3s ease, background-color 0.3s ease;

}
.projects-container a:hover .card-description {
color:white;

}

.card {
background: var(--card);
border-radius: 8px;

color: #0f172a;
transition: all 0.2s ease-in-out;
color: var(--head);
transition: all 0.2s ease-in-out;
display: flex;
flex-direction: column;
overflow: hidden;

}

.card:hover {
Expand Down Expand Up @@ -488,9 +479,6 @@ body {
margin-bottom: 0.5rem;
color: #000;
}
[data-theme="dark"] .card-heading {
color: white; /* Dark mode heading color */
}

.card-description {
font-size: 0.9rem;
Expand All @@ -511,9 +499,6 @@ body {
top: 1rem;
right: 1rem;
}
.icon.theme-mode-toggler {
z-index: 101;
}

#toggle-mode-btn {
border: none;
Expand All @@ -523,6 +508,7 @@ body {
justify-content: center;
border-radius: 9999px;
padding: 8px;
align-items: center;
background-color: #f43f5e;
color: #ffffff;
cursor: pointer;
Expand All @@ -532,82 +518,6 @@ body {
fill: #fff;
}

/*Footer Section*/
footer{
background-color: #141d2b;
height: 20vh;
width: 100vw;
}

.gridbox{
display: grid;
grid-template-columns: repeat(4,1fr);
list-style-type: none;
justify-content: center;
align-items: center;
position: relative;
margin: 0px 0px 0px 0px;
}
.gridbox li{
justify-self: center;
padding: 3%;
align-self: center;
text-align: center;
height: 50px;
}
.gridbox li a{
color: #06cfaa;
font-size: 1rem;
}
.container{
text-align: center;
color: rgb(215, 209, 196);
}
.container a{
color: rgb(213, 108, 108);
}


/* Contributor Card Styles */
.contributor-card {
background: var(--card);
border-radius: 8px;
transition: all 0.2s ease-in-out;
}

.contributor-card:hover {
box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.contributor-card-cover {
height: 8rem; /* Adjust as needed */
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px 8px 0 0;
overflow: hidden;
background-color: rgba(249, 89, 95, 0.2); /* Pinkish background */
}

.contributor-card-cover img {
height: 100%;
}

.contributor-card-content {
padding: 1rem;
}

.contributor-card-heading {
color: #1e293b;
font-weight: 600;
}

.contributor-card-description {
color: #475569;
font-size: 0.9rem;
margin-top: 0.2rem;
}

#footer {
padding-top: 5.5em;
}
Expand All @@ -628,7 +538,7 @@ footer{
}

.post-footer .post-author {
position: absolute;
position: relative;
margin-top: 4em;
background-color: var(--background-color);
}
Expand Down Expand Up @@ -1021,3 +931,36 @@ input:focus {
border-color: var(--btn-color);
}

footer{
background-color: #141d2b;
height: 20vh;
width: 100vw;
}

.gridbox{
display: grid;
grid-template-columns: repeat(4,1fr);
list-style-type: none;
justify-content: center;
align-items: center;
position: relative;
margin: 0px 0px 0px 0px;
}
.gridbox li{
justify-self: center;
padding: 3%;
align-self: center;
text-align: center;
height: 50px;
}
.gridbox li a{
color: #06cfaa;
font-size: 1rem;
}
.container{
text-align: center;
color: rgb(215, 209, 196);
}
.container a{
color: rgb(213, 108, 108);
}
Loading
Loading