demo.css 522 B

12345678910111213141516171819202122232425262728293031323334353637
  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. .bignum {
  13. width: 1em;
  14. text-align: center;
  15. font-size: 4em;
  16. color: white;
  17. background-color: black;
  18. padding: 0.3em;
  19. border-right: 0.3em solid white;
  20. }
  21. #error-tr {
  22. background-color: red;
  23. text-align: center;
  24. }
  25. #error-td {
  26. padding: 1em;
  27. color: white;
  28. }
  29. table {
  30. width: 100%;
  31. }