Files
Personal-Portfolio-Website/css/github.css
T
fraujulianandGitHub 0225da051b Updated my Website
- other (better) Theme
- added more Features
- changed Text
- added more animations
2024-01-05 22:49:17 +01:00

73 lines
1.1 KiB
CSS

/* GitHub Projects */
@media (prefers-color-scheme: dark) {
:root {
--hover-bg-color: #001e3d;
}
}
@media (prefers-color-scheme: light) {
:root {
--hover-bg-color: #001e3d;
}
}
.hoverable:hover {
background-color: var(--hover-bg-color);
cursor: pointer;
}
#github_projects .stargazers {
padding-right: var(--padding-small);
}
#github_projects .stars {
color: var(--main-txt-color) !important;
}
#github_projects a {
text-transform: capitalize;
text-decoration-line: none;
}
.github-modal>.card {
height: 80% !important;
overflow-y: auto;
}
#github_projects .card {
padding: var(--padding-big);
text-align: left;
}
#github_projects .card a {
color: var(--main-txt-color) !important;
}
#github_projects .card p {
margin: 0;
}
.github-hidden {
display: none;
}
.github-modal>.card {
text-align: start;
}
.github-modal img {
max-width: 100%;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #eaebfe;
}