52 lines
627 B
CSS
Executable file
52 lines
627 B
CSS
Executable file
*
|
|
{
|
|
font-family: "Roboto";
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
#window
|
|
{
|
|
margin: 0px;
|
|
border: none;
|
|
border-color: rgba(0, 0, 0, 0.5);
|
|
border-radius: 16;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
color: #dfe2e1;
|
|
}
|
|
|
|
#input
|
|
{
|
|
margin: 25px;
|
|
background-color: 191724;
|
|
color: rgb(255, 255, 255);
|
|
border-radius: 10px;
|
|
border: none;
|
|
}
|
|
|
|
#scroll
|
|
{
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
#entry
|
|
{
|
|
margin: 0px 25px;
|
|
}
|
|
|
|
#entry:selected
|
|
{
|
|
border-radius: 10px;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
#entry > box
|
|
{
|
|
margin-left: 15px;
|
|
}
|
|
|
|
#entry image
|
|
{
|
|
padding-right: 10px;
|
|
}
|