my-portfolio/src/blog/css/home.css
rodude123 b28e7b2da5
All checks were successful
🚀 Deploy website on push / 🎉 Deploy (push) Successful in 24s
Various fixes for the blog and editor. As well as finally adding in the carousel!
Signed-off-by: rodude123 <rodude123@gmail.com>
2024-11-04 22:17:42 +00:00

225 lines
4.4 KiB
CSS

/**** Blog Home page *****/
.banner {
max-width: 30%;
box-shadow: 0 6px 4px 0 var(--mutedBlack);
-webkit-border-radius: 0.625rem;
-moz-border-radius: 0.625rem;
border-radius: 0.625rem;
border: 2px solid var(--mutedGrey);
}
h2 {
font-family: Share Tech Mono, monospace;
font-style: normal;
font-weight: normal;
font-size: var(--headingFS);
line-height: 2.5625rem;
text-transform: lowercase;
}
h3 {
font-family: Noto Sans KR, sans-serif;
font-style: normal;
font-weight: 500;
font-size: var(--generalFS);
line-height: 2.1875rem;
}
div.menu {
width: 100%;
border-bottom: 5px solid var(--mutedGrey);
}
div.menu input:not([type="submit"]) {
width: auto;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
div.menu > ul {
list-style: none;
display: flex;
flex-direction: row;
justify-content: space-around;
}
div.menu ul li {
display: flex;
flex-direction: row;
}
div.menu ul li button.btn {
padding: initial;
border-radius: 0 0.5em 0.5em 0;
}
div.menu ul li input:not([type="submit"]):focus + button.btn,
div.menu ul li:hover button.btn,
div.menu ul li:focus button.btn {
background: var(--primaryHover);
border: 0.3215em solid var(--primaryHover);
}
div.menu ul li:hover input:not([type="submit"]),
div.menu ul li:focus input:not([type="submit"]) {
border: 0.3215em solid var(--primaryHover);
}
section.largePost {
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: flex-start;
gap: 2em;
width: 100%;
padding: 0 5em 1em;
}
section.largePost:not(:last-child) {
border-bottom: 5px solid var(--mutedGrey);
}
section.largePost .outerContent {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
gap: 1em;
}
section.largePost .outerContent > img, section.largePost .outerContent > .content {
width: 50%;
}
section.largePost .outerContent .postContent {
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: flex-start;
}
section.largePost .outerContent .postContent h2 {
align-self: center;
}
section.largePost .outerContent .postContent a {
align-self: flex-end;
}
#main .errorFof, #main .unsubscribe {
display: table;
width: 100%;
height: 100dvh;
text-align: center;
}
#main .unsubscribe {
height: 50dvh;
}
.centered {
display: table-cell;
vertical-align: middle;
}
section#olderPosts {
/*max-width: 90%;*/
margin: auto;
}
section#olderPosts .carousel {
position: relative;
margin: auto;
}
section#olderPosts .arrow {
position: absolute;
top: 50%;
display: flex;
width: 2.5em;
height: 2.5em;
justify-content: center;
align-items: center;
border-radius: 50%;
z-index: 1;
font-size: 1.625em;
color: white;
background: var(--mutedBlack);
cursor: pointer;
}
section#olderPosts .arrow:hover {
background: var(--grey);
}
section#olderPosts #prev {
left: -4em;
}
section#olderPosts #next {
right: -4em;
}
section#olderPosts .carouselOuter {
display: flex;
flex-direction: row;
align-items: center;
gap: 1em;
overflow: hidden;
position: relative;
margin: auto;
}
section#olderPosts #allCarouselItems {
display: none;
}
section#olderPosts #carouselInner {
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: center;
gap: 1em;
transition: transform 0.5s ease-in-out;
left: 0;
height: 50%;
}
section#olderPosts #carouselInner .cardItem {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
border: 2px solid var(--primaryDefault);
-webkit-border-radius: 0.625rem;
-moz-border-radius: 0.625rem;
border-radius: 0.625rem;
width: 30em;
height: 40rem;
}
section#olderPosts #carouselInner .cardItem img {
width: 100%;
height: 300px;
object-fit: cover;
object-position: left;
-webkit-border-radius: 0.625rem;
-moz-border-radius: 0.625rem;
border-radius: 0.625rem;
color: #FFFFFF;
}
section#olderPosts #carouselInner .cardItem .content {
height: auto;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
background: #FFFFFF;
margin: 0 2em 1.5em;
padding: 0;
}