Advertisement
tool684

styles.css

Apr 17th, 2025
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.59 KB | Source Code | 0 0
  1. body {
  2.     font-family: Arial, sans-serif;
  3.     margin: 20px;
  4. }
  5.  
  6. h1 {
  7.     text-align: center;
  8. }
  9.  
  10. .filters {
  11.     margin-bottom: 20px;
  12. }
  13.  
  14. .filters label {
  15.     margin-right: 10px;
  16. }
  17.  
  18. .filters input {
  19.     margin-right: 10px;
  20.     padding: 5px;
  21. }
  22.  
  23. .filters button {
  24.     padding: 5px 10px;
  25. }
  26.  
  27. .upload {
  28.     margin-bottom: 20px;
  29. }
  30.  
  31. table {
  32.     width: 100%;
  33.     border-collapse: collapse;
  34. }
  35.  
  36. th, td {
  37.     border: 1px solid #ddd;
  38.     padding: 8px;
  39.     text-align: left;
  40. }
  41.  
  42. th {
  43.     background-color: #f2f2f2;
  44. }
  45.  
  46. tr:nth-child(even) {
  47.     background-color: #f9f9f9;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement