Spaces:
Sleeping
Sleeping
File size: 1,134 Bytes
5cdaf63 |
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 70 71 72 73 74 75 76 77 78 79 |
body {
box-sizing: border-box;
margin: 2rem;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
}
h1 {
text-align: center;
margin-bottom: 2rem;
}
form {
max-width: 800px;
margin: 0 auto;
}
textarea {
width: 100%;
min-height: 150px;
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1rem;
resize: vertical;
}
button {
padding: 0.6rem 1.2rem;
background-color: #4a90e2;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
margin-top: 1rem;
}
button:hover {
background-color: #357ab8;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 1.5rem;
}
th,
td {
border: 1px solid #ccc;
padding: 0.75rem;
text-align: center;
}
th {
background-color: #4a90e2;
color: white;
}
a {
display: inline-block;
margin-top: 1rem;
text-decoration: none;
color: #4a90e2;
}
a:hover {
text-decoration: underline;
}
.link-wrapper {
text-align: center;
} |