File size: 1,116 Bytes
1a82bcb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
/* Style the header */
h1 {
text-align: center;
font-size: 24px;
margin-bottom: 20px;
}
/* Style the form container */
form {
width: 60%;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
}
/* Style the file input fields */
/* input[type="file"] {
display: block;
margin: 10px 0;
} */
/* Style the table */
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
/* Style table headers */
th {
background-color: #333;
color: white;
text-align: left;
}
/* Style table data rows */
tr:nth-child(even) {
background-color: #f2f2f2;
}
/* Style table data cells */
td {
padding: 8px;
border: 1px solid #ddd;
}
/* Style the submit button */
button[type="submit"] {
display: block;
margin: 20px 0;
padding: 10px 20px;
background-color: #333;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
/* Style the dropdown select */
select {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 5px;
} |