48 lines
506 B
CSS
48 lines
506 B
CSS
window {
|
|
margin: 5px;
|
|
border: 2px solid yellow;
|
|
border-radius: 15px;
|
|
background-color: black;
|
|
}
|
|
|
|
#input {
|
|
margin: 15px;
|
|
border: 2px gray;
|
|
background-color: white;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 5px;
|
|
background-color: black;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 5px;
|
|
border: 2px black ;
|
|
border-radius: 25px;
|
|
background-color: black;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 5px;
|
|
}
|
|
|
|
#text {
|
|
margin: 5px;
|
|
color: black;
|
|
}
|
|
|
|
#entry {
|
|
margin: 5px;
|
|
background-color: yellow;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: white;
|
|
}
|
|
#img {
|
|
|
|
}
|
|
|