al-tools / static /css /styles.css
spdin
update
1a82bcb
raw
history blame
1.12 kB
/* 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;
}