forked from AdvancedProgramming1404/HW-07-JavaFX
47 lines
810 B
CSS
47 lines
810 B
CSS
.root {
|
|
-fx-background-color: #f5f5f5;
|
|
-fx-font-family: "Segoe UI", sans-serif;
|
|
}
|
|
|
|
.header-title {
|
|
-fx-font-size: 24px;
|
|
-fx-font-weight: bold;
|
|
-fx-text-fill: #1a1a2e;
|
|
}
|
|
|
|
.now-playing {
|
|
-fx-font-size: 14px;
|
|
-fx-text-fill: #555555;
|
|
}
|
|
|
|
.song-card {
|
|
-fx-background-color: #ffffff;
|
|
-fx-padding: 15;
|
|
-fx-background-radius: 10;
|
|
-fx-effect: dropshadow(gaussian, rgba(0,0,0,0.1), 5, 0, 0, 2);
|
|
}
|
|
|
|
.song-title {
|
|
-fx-font-size: 16px;
|
|
-fx-font-weight: bold;
|
|
-fx-text-fill: #000000;
|
|
}
|
|
|
|
.song-artist {
|
|
-fx-text-fill: #888888;
|
|
}
|
|
|
|
.play-btn {
|
|
-fx-background-color: #2196F3;
|
|
-fx-text-fill: white;
|
|
}
|
|
|
|
.add-btn {
|
|
-fx-background-color: #e0e0e0;
|
|
-fx-text-fill: #1a1a2e;
|
|
}
|
|
|
|
.view-playlist-btn {
|
|
-fx-background-color: #9C27B0;
|
|
-fx-text-fill: white;
|
|
} |