stylesheet.css 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .regular:active {
  2. background-color: rgba(255, 255, 255, 0.2);
  3. color: white;
  4. }
  5. .inverted:active {
  6. background-color: rgba(0, 0, 0, 0.2);
  7. color: black;
  8. }
  9. .regular {
  10. background-color: rgba(255, 255, 255, 0.05);
  11. color: white;
  12. }
  13. .inverted {
  14. background-color: rgba(0, 0, 0, 0.05);
  15. color: black;
  16. }
  17. .keysHolder>* {
  18. border: 0;
  19. background-clip: padding-box;
  20. box-sizing: border-box;
  21. }
  22. .dr-b {
  23. border: 0;
  24. background-clip: padding-box;
  25. margin: inherit;
  26. box-sizing: border-box;
  27. }
  28. .boxLay.regular:dragging {
  29. background-image: url(ui/icons/hicolor/scalable/actions/move.svg);
  30. background-size: 100px;
  31. }
  32. .boxLay.inverted:dragging {
  33. background-image: url(ui/icons/hicolor/scalable/actions/move-dark.svg);
  34. background-size: 100px;
  35. }
  36. .close_btn, .move_btn {
  37. background-repeat: no-repeat;
  38. background-position: center;
  39. }
  40. .close_btn.regular {
  41. background-image: url(ui/icons/hicolor/scalable/actions/close.svg);
  42. }
  43. .close_btn.inverted {
  44. background-image: url(ui/icons/hicolor/scalable/actions/close-dark.svg);
  45. }
  46. .move_btn.regular {
  47. background-image: url(ui/icons/hicolor/scalable/actions/move.svg);
  48. }
  49. .move_btn.inverted {
  50. background-image: url(ui/icons/hicolor/scalable/actions/move-dark.svg);
  51. }
  52. .keyActionBtns {
  53. background-color: rgba(255, 255, 255, 0.00);
  54. border: 0;
  55. border-radius: 0px;
  56. background-clip: padding-box;
  57. margin: 0px !important;
  58. box-sizing: border-box;
  59. }
  60. .selected.regular {
  61. background-color: rgba(255, 255, 255, 0.7);
  62. color: black;
  63. }
  64. .selected.inverted {
  65. background-color: rgba(0, 0, 0, 0.7);
  66. color: white;
  67. }
  68. .db-keyboard-content {
  69. background-color: rgba(0, 0, 0, 0);
  70. border: 0;
  71. }
  72. .boxLay {
  73. padding: 20px;
  74. border-radius: 10px;
  75. }