Skip to content

Commit

Permalink
Build and Deploy from Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
carrieeex committed Jul 8, 2024
0 parents commit 488337b
Show file tree
Hide file tree
Showing 119 changed files with 28,033 additions and 0 deletions.
838 changes: 838 additions & 0 deletions 2022/02/20/hello-world/index.html

Large diffs are not rendered by default.

915 changes: 915 additions & 0 deletions 2024/07/02/contact-me/index.html

Large diffs are not rendered by default.

934 changes: 934 additions & 0 deletions 2024/07/02/my-first-blog-post/index.html

Large diffs are not rendered by default.

1,106 changes: 1,106 additions & 0 deletions 2024/07/03/handpan-00/index.html

Large diffs are not rendered by default.

939 changes: 939 additions & 0 deletions 2024/07/04/acoustics-00/index.html

Large diffs are not rendered by default.

1,131 changes: 1,131 additions & 0 deletions 2024/07/06/handpan-rsc/index.html

Large diffs are not rendered by default.

503 changes: 503 additions & 0 deletions 404.html

Large diffs are not rendered by default.

609 changes: 609 additions & 0 deletions about/index.html

Large diffs are not rendered by default.

525 changes: 525 additions & 0 deletions archives/2022/02/index.html

Large diffs are not rendered by default.

525 changes: 525 additions & 0 deletions archives/2022/index.html

Large diffs are not rendered by default.

557 changes: 557 additions & 0 deletions archives/2024/07/index.html

Large diffs are not rendered by default.

557 changes: 557 additions & 0 deletions archives/2024/index.html

Large diffs are not rendered by default.

574 changes: 574 additions & 0 deletions archives/index.html

Large diffs are not rendered by default.

556 changes: 556 additions & 0 deletions categories/About-Me/index.html

Large diffs are not rendered by default.

532 changes: 532 additions & 0 deletions categories/Acoustics/index.html

Large diffs are not rendered by default.

540 changes: 540 additions & 0 deletions categories/Handpan/index.html

Large diffs are not rendered by default.

532 changes: 532 additions & 0 deletions categories/Misc/index.html

Large diffs are not rendered by default.

506 changes: 506 additions & 0 deletions categories/index.html

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions css/announcement.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/* Override the shake animation for .icon.left */
.website-announcement .icon.left {
content: url('../images/chat-bubble-with-quotation-marks-svgrepo-com.svg'); /* Change this path to your new icon */
font-size: 1.2rem; /* This will not affect SVG size */
width: 24px; /* Adjust the width to fit your layout */
height: 24px; /* Adjust the height to fit your layout */
background-size: contain; /* Ensure the icon fits within the dimensions */
display: inline-block; /* Ensures the SVG is displayed properly */
animation: none !important; /* This will remove the shake animation */
/* Or apply a new animation */
}

/* Ensure that your CSS selector matches the element that holds the icon */
.website-announcement .announcement {
white-space: normal !important; /* Allow text to wrap */
overflow: visible !important; /* Ensure text is not truncated */
text-overflow: clip !important; /* Ensure text does not show ellipsis */
}

.website-announcement p {
white-space: normal !important; /* Allow text to wrap */
overflow: visible !important; /* Ensure text is not truncated */
text-overflow: clip !important ; /* Ensure text does not show ellipsis */
}
248 changes: 248 additions & 0 deletions css/common/animated.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,248 @@
.fade-in-down-animation {
animation-name: fade-in-down;
animation-duration: 1s;
animation-fill-mode: both;
}
.title-hover-animation {
position: relative;
display: inline-block;
color: var(--text-color-2);
line-height: 1.3;
vertical-align: top;
border-bottom: none;
}
.title-hover-animation::before {
position: absolute;
bottom: -4px;
left: 0;
width: 100%;
height: 2px;
background-color: var(--text-color-2);
transform: scaleX(0);
visibility: hidden;
content: "";
transition-delay: 0s, 0s, 0s, 0s, 0s, 0s;
transition-timing-function: ease, ease, ease, ease, ease-in-out, ease-in-out;
transition-duration: 0.2s, 0.2s, 0.2s, 0.2s, 0.2s, 0.2s;
transition-property: color, background, box-shadow, border-color, visibility, transform;
}
.title-hover-animation:hover::before {
transform: scaleX(1);
visibility: visible;
}
@-moz-keyframes fade-in-down {
0% {
transform: translateY(-50px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
@-webkit-keyframes fade-in-down {
0% {
transform: translateY(-50px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
@-o-keyframes fade-in-down {
0% {
transform: translateY(-50px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
@keyframes fade-in-down {
0% {
transform: translateY(-50px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
@-moz-keyframes heartbeat-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
}
@-webkit-keyframes heartbeat-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
}
@-o-keyframes heartbeat-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
}
@keyframes heartbeat-animate {
0%, 100% {
transform: scale(1);
}
10%, 30% {
transform: scale(0.88);
}
20%, 40%, 60%, 80% {
transform: scale(1.08);
}
50%, 70% {
transform: scale(1.08);
}
}
@-moz-keyframes img-loading-animation {
to {
transform: rotate(1turn);
}
}
@-webkit-keyframes img-loading-animation {
to {
transform: rotate(1turn);
}
}
@-o-keyframes img-loading-animation {
to {
transform: rotate(1turn);
}
}
@keyframes img-loading-animation {
to {
transform: rotate(1turn);
}
}
@-moz-keyframes blink-caret {
from, to {
opacity: 0;
}
50% {
opacity: 1;
}
}
@-webkit-keyframes blink-caret {
from, to {
opacity: 0;
}
50% {
opacity: 1;
}
}
@-o-keyframes blink-caret {
from, to {
opacity: 0;
}
50% {
opacity: 1;
}
}
@keyframes blink-caret {
from, to {
opacity: 0;
}
50% {
opacity: 1;
}
}
@-moz-keyframes shake {
0% {
transform: rotate(-5deg);
}
25% {
transform: rotate(5deg);
}
50% {
transform: rotate(-5deg);
}
75% {
transform: rotate(5deg);
}
100% {
transform: rotate(-5deg);
}
}
@-webkit-keyframes shake {
0% {
transform: rotate(-5deg);
}
25% {
transform: rotate(5deg);
}
50% {
transform: rotate(-5deg);
}
75% {
transform: rotate(5deg);
}
100% {
transform: rotate(-5deg);
}
}
@-o-keyframes shake {
0% {
transform: rotate(-5deg);
}
25% {
transform: rotate(5deg);
}
50% {
transform: rotate(-5deg);
}
75% {
transform: rotate(5deg);
}
100% {
transform: rotate(-5deg);
}
}
@keyframes shake {
0% {
transform: rotate(-5deg);
}
25% {
transform: rotate(5deg);
}
50% {
transform: rotate(-5deg);
}
75% {
transform: rotate(5deg);
}
100% {
transform: rotate(-5deg);
}
}
Loading

0 comments on commit 488337b

Please sign in to comment.