This repository has been archived on 2021-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
envoy/src/main/resources/css/base.css

30 lines
349 B
CSS
Raw Normal View History

2020-06-08 10:02:39 +02:00
.button {
-fx-background-radius: 5em;
}
2020-06-18 22:20:34 +02:00
.button:hover {
-fx-scale-x: 1.05;
-fx-scale-y: 1.05;
}
#remainingCharsLabel {
-fx-text-fill: #00FF00;
-fx-opacity: 1;
-fx-background-color: transparent;
}
.online {
-fx-text-fill: limegreen;
}
.away {
-fx-text-fill: orangered;
}
.busy {
-fx-text-fill: red;
}
.offline {
-fx-text-fill: gray;
}