kicad.css 924 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .kicad-schematic {
  2. border: 1px solid #3034ec;
  3. border-radius: 1em;
  4. width: 100%;
  5. max-width: 600px;
  6. }
  7. .kicad-schematic .toolbar {
  8. margin-top: -0.15em; /* Fix rounded corners not lining up */
  9. text-align: center;
  10. margin-bottom: 1em;
  11. width: 100%;
  12. }
  13. .kicad-schematic .toolbar button {
  14. background-color: #3034ec;
  15. color: white;
  16. cursor: pointer;
  17. width: 100%;
  18. border: 1px solid #3034ec;
  19. border-radius: 1em 1em 0em 0em;
  20. padding: 0.2em 0.4em;
  21. }
  22. .kicad-schematic .toolbar button:hover {
  23. background-color: darkblue;
  24. }
  25. .kicad-schematic .image-container {
  26. text-align: center;
  27. width: 100%;
  28. }
  29. .kicad-schematic .image-container img {
  30. display: block;
  31. margin-left: auto;
  32. margin-right: auto;
  33. }