41 lines
466 B
CSS
41 lines
466 B
CSS
* {
|
|
font-family: JetBrainsMono;
|
|
color: #e5e9f0;
|
|
background: transparent;
|
|
}
|
|
|
|
#window {
|
|
background: #1d2021;
|
|
margin: auto;
|
|
padding: 10px;
|
|
border-radius: 1px;
|
|
border: 3px solid #fbf1c7;
|
|
}
|
|
|
|
#input {
|
|
padding: 8px;
|
|
margin-bottom: 10px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
#outer-box {
|
|
padding: 20px;
|
|
}
|
|
|
|
#img {
|
|
margin-right: 6px;
|
|
}
|
|
|
|
#entry {
|
|
padding: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #2e3440;
|
|
}
|
|
|
|
#text {
|
|
margin: 2px;
|
|
}
|