46 lines
787 B
CSS
46 lines
787 B
CSS
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
font-family: Sans;
|
|
font-size: 15px;
|
|
box-shadow: none;
|
|
text-shadow: none;
|
|
transition-duration: 0s;
|
|
}
|
|
|
|
window {
|
|
margin: 5px;
|
|
border: none;
|
|
color: rgba(217, 216, 216, 1);
|
|
background: rgba(35, 31, 32, 0.80);
|
|
}
|
|
|
|
#input {
|
|
margin: 5px;
|
|
border: none;
|
|
background-color: #DBC7E4;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 5px;
|
|
border: none;
|
|
background-color: rgba(35, 31, 32, 0.80);
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 5px;
|
|
border: none;
|
|
background-color: #1E122;
|
|
display: none;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 5px;
|
|
background-color: black;
|
|
}
|
|
|
|
#text {
|
|
margin: 5px;
|
|
border: 0px solid black;
|
|
}
|