Files
fundor333.com/assets/sass/pride.scss
Fundor333 2bccadf38c Add webmention styles and share buttons
- Created a new SCSS file for webmention styles to enhance the appearance of comments and reactions.
- Added HTML partial for share buttons including Twitter, Facebook, LinkedIn, Reddit, and WhatsApp.
- Updated the main SCSS file to include webmention styles and removed the old CSS file for webmentions.
- Updated asset integrity for the compiled CSS file.
2025-06-30 00:35:05 +02:00

27 lines
424 B
SCSS

@keyframes enterIn {
0% {
opacity: 0;
}
100% {
opacity: 100;
}
}
@media only screen and (min-width: 768px) {
#pridecodes-code-corner-svg {
width: 150px;
}
}
@media only screen and (max-width: 767px) {
#pridecodes-code-corner-svg {
width: 75px;
}
}
#pridecodes-code-corner-svg {
animation: enterIn 2s;
transition: all 0.2s ease-in-out;
&:hover {
transform: scale(1.1);
transform-origin: left top;
}
}