style.css 355 B

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