This commit is contained in:
2023-11-26 18:56:40 +08:00
parent be14f5fdb1
commit 64431e7a73
144 changed files with 497072 additions and 3730 deletions

View File

@@ -42,6 +42,14 @@ @keyframes lqipFade {
}
}
.hover-text-white {
--bs-nav-link-hover-color: white;
}
.hover-text-white:hover {
color: white !important;
}
figure.image > img {
max-width: 100%;
height: auto;
@@ -70,3 +78,51 @@ .glow-3 {
-moz-box-shadow: 0px 0px 9px 5px rgba(46, 147, 255, 0.38);
box-shadow: 0px 0px 9px 5px rgba(46, 147, 255, 0.38);
}
.line-clamp-1 {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.line-clamp-2 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.line-clamp-3 {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.hover-grow {
transition: 0.3s;
transform: scale(1);
}
.hover-grow:hover,
.d-grow {
transform: scale(1.03);
transition: 0.3s;
}
@keyframes breathing {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
.breathing-effect {
animation: breathing 1s ease-in-out infinite;
}