Simple monitor for displaying MIDI status for digital pianos.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

86 líneas
810 B

  1. :root {
  2. height: 100%;
  3. width: 100%;
  4. color: white;
  5. background: black;
  6. }
  7. body {
  8. height: 100%;
  9. width: 100%;
  10. margin: 0;
  11. font-family: sans-serif;
  12. }
  13. #root {
  14. display: contents;
  15. }
  16. .flex {
  17. display: flex;
  18. }
  19. .flex-col {
  20. flex-direction: column;
  21. }
  22. .items-stretch {
  23. align-items: stretch;
  24. }
  25. .justify-center {
  26. justify-content: center;
  27. }
  28. .h-full {
  29. height: 100%;
  30. }
  31. .flex-shrink-0 {
  32. flex-shrink: 0;
  33. }
  34. .items-center {
  35. align-items: center;
  36. }
  37. .w-full {
  38. width: 100%;
  39. }
  40. .gap-8 {
  41. gap: 2rem;
  42. }
  43. .flex-auto {
  44. flex: auto;
  45. }
  46. .bg-black {
  47. background-color: black;
  48. }
  49. select {
  50. color: inherit;
  51. font: inherit;
  52. border: 0;
  53. }
  54. .h-12 {
  55. height: 3rem;
  56. }
  57. .px-4 {
  58. padding-left: 1rem;
  59. padding-right: 1rem;
  60. }
  61. .px-8 {
  62. padding-left: 2rem;
  63. padding-right: 2rem;
  64. }
  65. .gap-4 {
  66. gap: 1rem;
  67. }