mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-12 15:50:01 -08:00
56 lines
949 B
Plaintext
56 lines
949 B
Plaintext
configuration {
|
|
font: "Sans 12";
|
|
}
|
|
|
|
* {
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
text-color: #FFFFFF;
|
|
}
|
|
|
|
window {
|
|
fullscreen: true;
|
|
transparency: "real";
|
|
background-color: transparent;
|
|
}
|
|
|
|
mainbox {
|
|
children: [ message, listview, inputbar ];
|
|
padding: 40% 30%;
|
|
background-color: transparent;
|
|
}
|
|
|
|
message {
|
|
border: 0;
|
|
padding: 10px;
|
|
border-radius:20px;
|
|
margin: 0 0 20px 0;
|
|
font: "Sans Bold 24"; /* Increased font size and made it bold */
|
|
}
|
|
|
|
inputbar {
|
|
children: [ prompt, entry ];
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
padding: 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
prompt {
|
|
padding: 8px;
|
|
}
|
|
|
|
entry {
|
|
padding: 8px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
listview {
|
|
lines: 0;
|
|
}
|
|
|
|
/* Style for the message text specifically */
|
|
textbox {
|
|
horizontal-align: 0.5; /* Center the text */
|
|
font: "Sans Bold 24"; /* Match message font */
|
|
background-color: transparent;
|
|
}
|