style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. @font-face {
  2. font-family: "Iosevka Slab";
  3. src: url("fonts/SGr-IosevkaSlab-Regular.ttc");
  4. }
  5. .root {
  6. -fx-background-color: #000000;
  7. -fx-font-family: "Iosevka Slab", serif;
  8. -fx-font-size: 1.7em;
  9. -fx-focus-color: #aaaaaa;
  10. }
  11. .vbox,
  12. .grid-pane,
  13. .text-flow {
  14. -fx-background-color: transparent;
  15. }
  16. .text,
  17. .label {
  18. -fx-fill: #e0e0e0;
  19. -fx-text-fill: #e0e0e0;
  20. }
  21. .scroll-pane {
  22. -fx-background-color: #000000;
  23. -fx-background-radius: 0;
  24. -fx-border-width: 0;
  25. }
  26. .scroll-pane > .viewport {
  27. -fx-background-color: #000000;
  28. }
  29. .button {
  30. -fx-background-color: #222222;
  31. -fx-text-fill: #e0e0e0;
  32. -fx-border-color: #555555;
  33. -fx-border-width: 1px;
  34. -fx-background-radius: 0;
  35. -fx-border-radius: 0;
  36. -fx-padding: 6px 12px;
  37. }
  38. .enter-button {
  39. -fx-background-color: #14262b !important;
  40. }
  41. .press-button {
  42. -fx-background-color: #14182b !important;
  43. }
  44. .slay-button {
  45. -fx-background-color: #2b1416 !important;
  46. }
  47. .button:hover {
  48. -fx-background-color: #333333;
  49. -fx-border-color: #777777;
  50. -fx-text-fill: #ffffff;
  51. }
  52. .button:focused {
  53. -fx-border-color: #e0e0e0;
  54. -fx-border-width: 1px;
  55. }
  56. .button:pressed {
  57. -fx-background-color: #111111;
  58. }
  59. .scroll-bar {
  60. -fx-background-color: #000000;
  61. }
  62. .scroll-bar .increment-button,
  63. .scroll-bar .decrement-button {
  64. -fx-background-color: #000000;
  65. -fx-background-radius: 0;
  66. -fx-padding: 0;
  67. }
  68. .scroll-bar .increment-arrow,
  69. .scroll-bar .decrement-arrow {
  70. -fx-shape: "";
  71. -fx-padding: 0;
  72. }
  73. .scroll-bar:vertical .track,
  74. .scroll-bar:horizontal .track {
  75. -fx-background-color: #000000;
  76. -fx-border-color: #000000;
  77. -fx-background-radius: 0;
  78. -fx-border-radius: 0;
  79. }
  80. .scroll-bar .thumb {
  81. -fx-background-color: #333333;
  82. -fx-background-radius: 0;
  83. }
  84. .scroll-bar .thumb:hover {
  85. -fx-background-color: #555555;
  86. }