An Electron-based JLD2 data file viewer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

style.css 691B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #jld2 {
  2. padding-left: 1em;
  3. padding-top: 0.5em;
  4. }
  5. #jld2 td {
  6. padding-top: 0.25em;
  7. padding-bottom: 0.25em;
  8. padding-left: 0.5em;
  9. padding-right: 0.5em;
  10. }
  11. #jld2 tr {
  12. cursor: pointer;
  13. }
  14. #jld2 tr:hover td {
  15. background: lightblue;
  16. }
  17. #warning {
  18. padding: 0.75em 1em;
  19. border-radius: 4px;
  20. border-style: solid;
  21. border-width: 1px;
  22. margin-top: 0.5em;
  23. background-color: rgba(252, 248, 227, 1);
  24. border-color: rgba(177, 161, 129, 1);
  25. color: rgba(138, 109, 59, 1);
  26. }
  27. a {
  28. text-decoration: none;
  29. color: black;
  30. }
  31. .key {
  32. font-weight: bold;
  33. font-family: monospace;
  34. }
  35. .value {
  36. font-family: monospace;
  37. }