Studio-Modifier/Popups/Main.css
2025-04-15 11:59:49 -07:00

39 lines
540 B
CSS

html {
background: rgba(0, 0, 50, 0.8);
text-align: center;
color: white;
font-size: 13px;
}
input, button {
border: 2px solid rgb(0, 0, 255);
background: rgb(0, 0, 127);
border-radius: 20px;
color: white;
}
input {
width: 250px;
}
button {
width: 125px;
}
input:hover, button:hover {
background: rgb(0, 0, 180);
}
input:active, button:active {
background: rgb(0, 0, 70);
}
.Important {
font-weight: bold;
}
.Results {
border: 4px dotted rgb(0, 0, 127);
background: rgba(0, 0, 255, 0.8);
color: rgb(255, 255, 255);
}