Home Gen189 @ 2024-04-29-00:25

This commit is contained in:
Jonas Röger 2024-04-29 00:25:45 +02:00
parent 48ed677ff7
commit 170f1395a9

View File

@ -15,12 +15,22 @@
window {
border-radius: 15px;
border-color: transparent;
border-image: linear-gradient(45deg, #33ccff, #00ff99);
border-image-slice: 1;
/* border-image: linear-gradient(45deg, #33ccff, #00ff99);
border-image-slice: 1; */
border-width: 2px;
border-style: solid;
background-color: rgba(0.23, 0.26, 0.32, 0.6);
box-shadow: 0 0 0 15px transparent; /* Use box-shadow to create the radius effect */
background-clip: padding-box;
padding: 10px;
}
window::after {
position: absolute;
top: -2px; bottom: -2px;
left: -2px; right: -2px;
background: linear-gradient(45deg, #33ccff, #00ff99);
content: "";
z-index: -1;
border-radius: 15px;
}
#input {