custom.css 857 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* Transversal */
  2. .error {
  3. color: red;
  4. font-weight: 700;
  5. }
  6. .valid {
  7. color: green;
  8. }
  9. .annotation {
  10. color: #595959;
  11. font-size: 0.8em;
  12. }
  13. .datatable {
  14. width: 100% !important;
  15. }
  16. .flex-row{
  17. display: flex;
  18. flex-direction: row;
  19. }
  20. .flex-col{
  21. display: flex;
  22. flex-direction: column;
  23. }
  24. .flex-extend{
  25. flex: 1;
  26. }
  27. .flex-end{
  28. align-self: flex-end;
  29. }
  30. .hidden {
  31. display: none;
  32. }
  33. .disabled{
  34. pointer-events: none;
  35. }
  36. .fa {
  37. margin-right: 0.3em;
  38. }
  39. .tool-btn {
  40. padding-top: 0;
  41. padding-right: 1em;
  42. height: 2.5em;
  43. font-size: 1em;
  44. line-height: 2.5em;
  45. }
  46. .description {
  47. padding: 1em;
  48. margin: 1em 1em 2em 1em;
  49. }
  50. .description h1, h2, h3, h4, h5 {
  51. color: #333333;
  52. }
  53. /* Index */
  54. .issue-title a {
  55. color: #2e2e2e;
  56. font-size: 14px;
  57. font-wright: 600;
  58. text-decoration: none;
  59. }
  60. .issue-title a:hover {
  61. text-decoration: underline;
  62. }