Skip to content

Commit

Permalink
release: 1.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
SadraTghvi committed Oct 27, 2024
1 parent 0909cf0 commit f908a7b
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.6
1.5.7
80 changes: 80 additions & 0 deletions web/style/blog/blog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,86 @@

overflow: hidden;

.simurgh--blog-fnd {
display: flex;
align-items: center;
flex-direction: column;

padding: 7vh 0;

@media screen and (max-width: 1024px) {
padding: 7vh 1rem;
}
@media screen and (max-width: 1024px) {
padding: 7vh 5vw;
}
}

img.simurgh--blog-thumbnail {
width: 100%;
max-height: 350px;

border-radius: 16px;
object-fit: cover;

box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

header {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;

width: 100%;

font-size: clamp(1.2rem, 2.3vw + 0.7rem, 2.1rem);
font-family: 'iranBold';

white-space: nowrap;

margin-bottom: 2em;

opacity: 0;
transform: translateY(100%);

animation: welcomer-companyname-fadein 1s 1s ease-in-out forwards;

@keyframes welcomer-companyname-fadein {
from {
transform: translateY(100%);
}
to {
opacity: 1;
transform: translateY(0);
}
}

&::before,
&::after {
content: '';
width: 0;
height: 2px;
background-color: black;

animation: width-open 2s 1.5s cubic-bezier(0.45, 0.02, 0.09, 0.98)
forwards;

@keyframes width-open {
from {
width: 0px;
}
to {
width: 100%;
}
}
}
span {
padding: 0 1em;
white-space: nowrap;
}
}

.simurgh--blog-fnd {
width: 100%;

Expand Down

0 comments on commit f908a7b

Please sign in to comment.