This commit is contained in:
mmrbnjd
2024-05-28 21:22:35 +03:30
parent dd17d8cb1e
commit 127c2cb326
4 changed files with 70 additions and 17 deletions

View File

@@ -101,3 +101,63 @@ a, .btn-link {
code {
color: #c02d76;
}
.multi-button {
background-color: white;
border: 1px solid white;
border-radius: 14px;
padding: 7px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 15px 0 rgba(0, 0, 0, 0.1);
place-items: center;
}
#cut {
background-color: rgb(85,131,241);
border: 1px solid rgb(85,131,241);
}
#cut {
background-color: rgb(85,131,241);
border: 1px solid rgb(85,131,241);
}
#copy {
background-color: rgb(39,166,75);
border: 1px solid rgb(39,166,75);
}
#paste {
background-color: rgb(242,185,42);
border: 1px solid rgb(242,185,42);
}
#sred {
background-color: rgb(242 42 42);
border: 1px solid rgb(242 42 42);
}
#sred1 {
background-color: #ff7373;
border: 1px solid #ff7373;
}
.button {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.09), 0 6px 15px 0 rgba(0, 0, 0, 0.09);
padding: 10px 17px 10px 17px;
font: 15px Ubuntu;
color: white;
border-radius: 7px;
} .button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
} .button:hover span {
padding-right: 25px;
} .button:hover span:after {
opacity: 1;
right: 0;
}