110 lines
1.9 KiB
HTML
110 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>SqPad</title>
|
|
<style>
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
padding-top: 50px;
|
|
}
|
|
|
|
h1 {
|
|
color: orange;
|
|
}
|
|
|
|
#logo {
|
|
max-width: 200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#form-container {
|
|
max-width: 400px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
border: 2px solid orange;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
input[type="text"] {
|
|
width: 100%;
|
|
padding: 8px;
|
|
margin-top: 5px;
|
|
border: 1px solid orange;
|
|
border-radius: 5px;
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
background-color: orange;
|
|
color: black;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
input[type="submit"]:hover {
|
|
background-color: darkorange;
|
|
}
|
|
|
|
/* CSS for the table */
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 20px;
|
|
border: 2px solid orange;
|
|
color: white;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 10px;
|
|
text-align: left;
|
|
border-bottom: 1px solid orange;
|
|
}
|
|
|
|
th {
|
|
background-color: black;
|
|
color: orange;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: #333;
|
|
}
|
|
|
|
tr:nth-child(odd) {
|
|
background-color: #444;
|
|
}
|
|
|
|
/* Additional styles for the table */
|
|
caption {
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
color: orange;
|
|
}
|
|
|
|
.table-container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>SqPad</h1>
|
|
|