Skip to content

Commit

Permalink
release: 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SadraTghvi committed Oct 27, 2024
1 parent db09351 commit ff3604a
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.1
1.6.2
60 changes: 58 additions & 2 deletions web/style/blog/blog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@
width: 100%;

h3 {
font-size: clamp(1.6rem, 2.9vw + 1.3rem, 2.8rem);
font-family: 'iranBold';

margin-bottom: 2em;
margin-top: 4em;
}
Expand Down Expand Up @@ -223,25 +226,76 @@
padding: 1em;
}

div {
> div {
width: 90%;

display: flex;
align-items: center;
justify-content: space-between;

flex-wrap: wrap;

span {
.detail-container {
padding: 1em;
display: flex;
align-items: center;
gap: 1.2em;

font-family: var(--simurgh--font-title);

position: relative;
isolation: isolate;

transition: 0.5s ease;

@media screen and (max-width: 768px) {
color: white;
}
svg {
fill: white;
}
&::before {
content: '';

position: absolute;
right: 4px;
height: 40px;
width: 40px;

border-radius: 100vmax;

background-color: var(--ten-percent);

z-index: -1;

transition: 0.5s cubic-bezier(0.45, 0.02, 0.09, 0.98);

@media screen and (max-width: 768px) {
width: 100%;
height: 30px;
}
}

&:hover {
color: white;
&::before {
width: 100%;
}
}

&:nth-child(2) {
font-family: var(--simurgh--font-number);

&:before {
right: unset;
left: 4px;
}
}

span {
font-size: var(
--simurgh--size-title-title-description-small
);
}
}
}
Expand All @@ -266,6 +320,8 @@
width: 90%;
margin: 1rem 0;
background: var(--sixty-percent);

font-family: 'iranBold';
}
}
}
Expand Down

0 comments on commit ff3604a

Please sign in to comment.