forked from AdvancedProgramming1404/HW-07-JavaFX
46 lines
708 B
CSS
46 lines
708 B
CSS
.root{
|
|
-fx-background-color: #f8fafc;
|
|
}
|
|
|
|
.label{
|
|
-fx-text-fill: #1e293b;
|
|
}
|
|
|
|
.button{
|
|
-fx-background-color: #dbeafe;
|
|
-fx-text-fill: #1e3a8a;
|
|
-fx-background-radius: 14px;
|
|
-fx-cursor: hand;
|
|
}
|
|
|
|
.button:hover{
|
|
-fx-background-color: #bfdbfe;
|
|
}
|
|
|
|
.list-view{
|
|
-fx-background-color: #ffffff;
|
|
-fx-control-inner-background: #ffffff;
|
|
-fx-background-radius: 16px;
|
|
}
|
|
|
|
.list-cell{
|
|
-fx-background-color: transparent;
|
|
}
|
|
|
|
.list-cell:selected {
|
|
-fx-background-color: #93c5fd;
|
|
}
|
|
|
|
.button.circle-button{
|
|
|
|
-fx-background-color: #dbeafe;
|
|
|
|
-fx-background-radius: 100em;
|
|
-fx-background-insets: 0;
|
|
|
|
-fx-padding: 0;
|
|
|
|
-fx-pref-width: 35px;
|
|
-fx-pref-height: 35px;
|
|
|
|
} |