demo.css 557 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. p {
  2. margin: 0px 8px 8px 8px;
  3. }
  4. /* the select widths are not used for some reason, even if we don't set the style in index.html */
  5. select {
  6. width: 100px;
  7. margin: 2px 8px 8px 8px;
  8. }
  9. #selectSample {
  10. width: 320px;
  11. }
  12. #selectBounding {
  13. width: 80%;
  14. }
  15. .bignum {
  16. width: 1em;
  17. text-align: center;
  18. font-size: 4em;
  19. color: white;
  20. background-color: black;
  21. padding: 0.3em;
  22. border-right: 0.3em solid white;
  23. }
  24. #error-tr {
  25. background-color: red;
  26. text-align: center;
  27. }
  28. #error-td {
  29. padding: 1em;
  30. color: white;
  31. }
  32. table {
  33. width: 100%;
  34. }