style.css 391 B

12345678910111213141516171819202122232425262728293031
  1. * {
  2. font-family: Arial, sans-serif;
  3. box-sizing: border-box;
  4. }
  5. button{
  6. width: 100%;
  7. font-size: 2em;
  8. }
  9. input, button, select{
  10. width: 100%;
  11. font-size: 2em;
  12. }
  13. table {
  14. border: 1px;
  15. border-collapse: collapse;
  16. }
  17. td,th {
  18. border: 1px solid black;
  19. }
  20. .time {
  21. font-size: 12px;
  22. font-weight: bold;
  23. }
  24. .message {
  25. font-style: italic;
  26. font-size: 14px;
  27. }