app.css 884 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. #app, .page {
  46. height: 100%;
  47. }