app.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. html, body {
  2. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  3. margin: 0;
  4. height: 100vh;
  5. overflow: hidden;
  6. touch-action: none;
  7. }
  8. a, .btn-link {
  9. color: #0366d6;
  10. }
  11. .btn-primary {
  12. color: #fff;
  13. background-color: #1b6ec2;
  14. border-color: #1861ac;
  15. }
  16. .content {
  17. padding-top: 1.1rem;
  18. }
  19. .valid.modified:not([type=checkbox]) {
  20. outline: 1px solid #26b050;
  21. }
  22. .invalid {
  23. outline: 1px solid red;
  24. }
  25. .validation-message {
  26. color: red;
  27. }
  28. #blazor-error-ui {
  29. background: lightyellow;
  30. bottom: 0;
  31. box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  32. display: none;
  33. left: 0;
  34. padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  35. position: fixed;
  36. width: 100%;
  37. z-index: 1000;
  38. }
  39. #blazor-error-ui .dismiss {
  40. cursor: pointer;
  41. position: absolute;
  42. right: 0.75rem;
  43. top: 0.5rem;
  44. }
  45. .canvas-container {
  46. opacity:1;
  47. background-color:#ccc;
  48. position:fixed;
  49. width:100%;
  50. height:100%;
  51. top:0px;
  52. left:0px;
  53. z-index:500;
  54. }
  55. canvas
  56. {
  57. opacity:1;
  58. background-color:#ccc;
  59. position:fixed;
  60. width:100%;
  61. height:100%;
  62. top:0px;
  63. left:0px;
  64. z-index:500;
  65. }
  66. #app, .page {
  67. height: 100%;
  68. }
  69. .overlay{
  70. opacity:0.0;
  71. background-color:#ccc;
  72. position:fixed;
  73. width:100vw;
  74. height:100vh;
  75. top:0px;
  76. left:0px;
  77. z-index:1000;
  78. }