53 lines
815 B
CSS
53 lines
815 B
CSS
* {
|
|
font-family: Agave Nerd Font Mono, Arial, sans-serif;
|
|
border-radius: 60px;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
window {
|
|
background-color: #1a1a1a;
|
|
color: #E40046;
|
|
border: solid;
|
|
border-width: 4px;
|
|
margin-bottom: 10px;
|
|
padding: 5px;
|
|
}
|
|
|
|
list {
|
|
background: none;
|
|
border-radius: 25px;
|
|
padding: 5px;
|
|
margin: 5px;
|
|
}
|
|
|
|
entry {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
padding: 4px 8px;
|
|
border-radius: 15px;
|
|
color: #b0b4bc;
|
|
}
|
|
|
|
button, image {
|
|
background: none;
|
|
border: none;
|
|
box-shadow: none;
|
|
color: #999;
|
|
}
|
|
|
|
button {
|
|
padding: 4px;
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
color: #eeeeee;
|
|
font-size: 12px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
button:focus {
|
|
box-shadow: none;
|
|
}
|