Compare commits

...

2 Commits

Author SHA1 Message Date
edbrz9 f92bab1cf6 copyme imported in style.css 2022-12-31 21:30:47 +01:00
edbrz9 812fb9c8c7 copyme added 2022-12-31 21:30:12 +01:00
2 changed files with 39 additions and 0 deletions

36
assets/css/copyme.css Normal file
View File

@ -0,0 +1,36 @@
section.copyme-containter {
position: relative;
}
span.copypopup {
position: absolute;
background-color: var(--success);
color: white;
font-size: 1.5rem;
padding: 10px;
right: -20px;
top: -5px;
transform: rotate(12deg);
opacity: 0;
}
section.copyme-containter span.success {
animation: fade-in 2s forwards;
}
@keyframes fade-in {
0% {
opacity: 0;
scale: 0%;
}
10% {
opacity: 1;
scale: 100%;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}

View File

@ -1,3 +1,6 @@
@import url("./copyme.css");
html {
min-height: 100vh;
position: relative;