theme.css 1000 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. :root {
  2. --primary-color: #198CFE;
  3. }
  4. * {
  5. margin : 0;
  6. padding : 0;
  7. box-sizing: border-box;
  8. }
  9. img {
  10. -webkit-touch-callout: none;
  11. }
  12. body {
  13. user-select: none;
  14. }
  15. g,
  16. path {
  17. outline: 0;
  18. }
  19. /* 用来标记音符数据的 */
  20. .abcjs-annotation {
  21. display: none;
  22. }
  23. .abcjs-download-midi {
  24. display: none;
  25. }
  26. .deleteDialog {
  27. display: flex;
  28. flex-direction: column;
  29. border-radius: 12px;
  30. min-height : 178px;
  31. }
  32. .deleteDialog.n-dialog .n-dialog__title {
  33. justify-content: center;
  34. font-weight: 600;
  35. font-size: 16px;
  36. }
  37. .deleteDialog.n-dialog .n-dialog__icon {
  38. display: none;
  39. }
  40. .deleteDialog.n-dialog .n-dialog__action {
  41. margin-top: auto;
  42. justify-content: center;
  43. }
  44. .deleteDialog.n-dialog .n-dialog__action .n-button{
  45. width: 117px;
  46. height: 35px;
  47. line-height: 35px;
  48. border-radius: 18px;
  49. }
  50. .deleteDialog.n-dialog .n-dialog__content{
  51. flex: 1;
  52. display: flex;
  53. align-items: center;
  54. justify-content: center;
  55. }