custom.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. justify-content: 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. select[multiple] {
  40. padding-top: 0.8em;
  41. min-height: 5em;
  42. }
  43. .tool-btn {
  44. padding-top: 0;
  45. padding-right: 1em;
  46. height: 2.5em;
  47. font-size: 1em;
  48. line-height: 2.5em;
  49. }
  50. .description {
  51. padding: 1em;
  52. margin: 1em 1em 2em 1em;
  53. }
  54. .description h1, h2, h3, h4, h5 {
  55. color: #333333;
  56. }
  57. .tags-list {
  58. list-style: none;
  59. }
  60. .tags-list li {
  61. display: inline;
  62. }
  63. .tags-list li:not(:first-child) {
  64. border-left: solid 1px #bfbfbf;
  65. }
  66. /* Index */
  67. .issue-title a {
  68. color: #2e2e2e;
  69. font-size: 14px;
  70. font-wright: 600;
  71. text-decoration: none;
  72. }
  73. .issue-title a:hover {
  74. text-decoration: underline;
  75. }