Adding resource icon
This commit is contained in:
parent
79a7557ea5
commit
826a597342
2 changed files with 45 additions and 3 deletions
|
|
@ -482,6 +482,38 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.button-generator {
|
||||||
|
background: #000;
|
||||||
|
height: 40%;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
&::before,
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
width: 90%;
|
||||||
|
height: 30%;
|
||||||
|
top: 15%;
|
||||||
|
left: 5%;
|
||||||
|
background: #fff;
|
||||||
|
animation: button 2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
bottom: 15%;
|
||||||
|
top: auto;
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
width: 50%;
|
||||||
|
animation: button 1.2s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Last.fm stats icon
|
// Last.fm stats icon
|
||||||
&.lastfm-stats {
|
&.lastfm-stats {
|
||||||
background: black;
|
background: black;
|
||||||
|
|
@ -506,13 +538,13 @@
|
||||||
&::before {
|
&::before {
|
||||||
left: 20px;
|
left: 20px;
|
||||||
height: 35px;
|
height: 35px;
|
||||||
animation: equalizer-1 0.8s ease-in-out infinite;
|
animation: equalizer-1 3s ease-in-out infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
left: 35px;
|
left: 35px;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
animation: equalizer-2 0.8s ease-in-out infinite 0.2s;
|
animation: equalizer-2 1s ease-in-out infinite 0.2s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -527,6 +559,16 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes button {
|
||||||
|
0%,
|
||||||
|
100% {
|
||||||
|
scale: 1;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
scale: 0.95;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes equalizer-1 {
|
@keyframes equalizer-1 {
|
||||||
0%,
|
0%,
|
||||||
100% {
|
100% {
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
title: "88x31 Button Creator"
|
title: "88x31 Button Creator"
|
||||||
date: 2026-01-08
|
date: 2026-01-08
|
||||||
description: "Make custom 88x31 pixel buttons with text, colors, gradients, and textures"
|
description: "Make custom 88x31 pixel buttons with text, colors, gradients, and textures"
|
||||||
icon: "button"
|
icon: "button-generator"
|
||||||
demo_url: ""
|
demo_url: ""
|
||||||
source_url: ""
|
source_url: ""
|
||||||
draft: false
|
draft: false
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue