Spaces:
Runtime error
Runtime error
File size: 455 Bytes
4f46ed8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
body {
background-color: black;
}
.button {
background: rgb(128,0,128);
background: linear-gradient(90deg, rgba(128,0,128,1) 0%, rgba(64,224,208,1) 100%);
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
transition-duration: 0.4s;
cursor: pointer;
}
.button:hover {
background: rgb(64,224,208);
background: linear-gradient(90deg, rgba(64,224,208,1) 0%, rgba(128,0,
|