Continous Integration in der Praxis Gruppenarbeit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
862 B

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