52 lines
661 B
CSS
52 lines
661 B
CSS
|
*
|
||
|
{
|
||
|
font-family: 'Montserrat', 'Cantarell', 'Caladea', sans-serif;
|
||
|
font-size: 16px;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
|
||
|
#window
|
||
|
{
|
||
|
margin: 0px;
|
||
|
border: none;
|
||
|
border-color: rgb(15, 15, 15);
|
||
|
border-radius: 20;
|
||
|
background-color: rgb(15, 15, 15);
|
||
|
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;
|
||
|
}
|