29 lines
554 B
CSS
29 lines
554 B
CSS
/* style.css */
|
|
|
|
/* Base font and spacing */
|
|
.root {
|
|
-fx-font-family: "Segoe UI", sans-serif;
|
|
-fx-font-size: 14px;
|
|
}
|
|
|
|
.text-area, .list-view {
|
|
-fx-font-family: monospace;
|
|
-fx-padding: 8px;
|
|
-fx-background-radius: 8px;
|
|
-fx-border-radius: 8px;
|
|
}
|
|
|
|
/* App title style */
|
|
.app-title {
|
|
-fx-font-size: 18px;
|
|
-fx-font-weight: bold;
|
|
}
|
|
|
|
/* Send button - common shape and font */
|
|
.send-button {
|
|
-fx-font-weight: bold;
|
|
-fx-background-radius: 12px;
|
|
-fx-border-radius: 12px;
|
|
-fx-padding: 8px 16px;
|
|
-fx-cursor: hand;
|
|
} |