60 lines
895 B
CSS
60 lines
895 B
CSS
.hoverable:hover {
|
|
backdrop-filter: blur(150px);
|
|
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;
|
|
} |