Website/assets/custom.css
obsidian 08349cd5eb
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 16s
Site update (back online)
2024-04-22 18:10:59 +02:00

156 lines
2.4 KiB
CSS

/* Add custom CSS */
#js-navbar .logo {
font-size: xx-large;
}
/* #js-navbar .logo-bar{
width: 100%;
height: 1px;
border-bottom: 3px solid var(--color-primary);
} */
.single-feature-img img {
margin: auto;
}
.slider_right:hover {
cursor: pointer;
pointer-events: none;
}
.slider_left:hover {
cursor: pointer;
pointer-events: none;
}
.carousel {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
overflow: hidden;
width: 100%;
margin: auto;
}
.caroussel-img {
height: 15rem;
margin: 0 10px;
border-radius: 20px;
transition: .3s all ease-in-out;
}
.caroussel-img:hover {
filter: brightness(150%);
border-radius: 4px;
}
.caroussel-img:focus {
scale: 150%;
}
.creator-list {
margin: 0;
display: flex;
flex-direction: row;
justify-content: space-around;
height: 100%;
}
.creator-entry {
width: 10em;
height: 16em;
display: flex;
flex-direction: column;
}
.creator-entry-img img {
border-radius: 50%;
margin: 10px;
width: 10em;
height: 10em;
object-fit: cover;
}
.creator-single-img {
display: flex;
}
.creator-single-img img {
border-radius: 50%;
margin: auto;
width: 20em;
height: 20em;
object-fit: cover;
}
.creator-list-summary {
font-size: small;
}
.creator-entry-title {
margin: 5px auto;
text-align: center;
}
.creator-projects {
display: flex;
flex-direction: row;
justify-content: space-around;
}
a {
position: relative;
}
a:hover {
text-decoration: none;
}
a:not(.menu-link):not(.btn-primary):not(.btn-secondary)[class]::before {
content: '';
position: absolute;
width: 100%;
height: 2px;
border-radius: 1px;
background-color: var(--color-primary);
bottom: 0;
left: 0;
transform-origin: right;
transform: scaleX(0);
transition: transform .3s ease-in-out;
}
a:not(.menu-link):not(.btn-primary):not(.btn-secondary)[class]:hover::before {
transform-origin: left;
transform: scaleX(1);
}
.discordLink {
display: flex;
justify-content: center;
margin: auto;
}
.creator-projects .project-entry {
max-width: 45%;
}
.post-entry {
display: flex;
flex-direction: row;
}
.post-entry img {
height: 100px;
width: 100px;
border-radius: 10px;
}
.markdown p img {
display: flex;
margin: auto;
}