app.css 821 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. html, body {
  2. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  3. }
  4. h1:focus {
  5. outline: none;
  6. }
  7. a, .btn-link {
  8. color: #0071c1;
  9. }
  10. .btn-primary {
  11. color: #fff;
  12. background-color: #1b6ec2;
  13. border-color: #1861ac;
  14. }
  15. .valid.modified:not([type=checkbox]) {
  16. outline: 1px solid #26b050;
  17. }
  18. .invalid {
  19. outline: 1px solid red;
  20. }
  21. .validation-message {
  22. color: red;
  23. }
  24. #blazor-error-ui {
  25. background: lightyellow;
  26. bottom: 0;
  27. box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  28. display: none;
  29. left: 0;
  30. padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  31. position: fixed;
  32. width: 100%;
  33. z-index: 1000;
  34. }
  35. #blazor-error-ui .dismiss {
  36. cursor: pointer;
  37. position: absolute;
  38. right: 0.75rem;
  39. top: 0.5rem;
  40. }
  41. .h-100vh {
  42. height: 100vh;
  43. }