Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zkPorpoise committed Feb 27, 2024
1 parent df2dce7 commit 9717dfb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
6 changes: 5 additions & 1 deletion my-responses.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ <h2 id="🐬"> Your Responses </h2>
<div id="tableContainer">
<table>
<thead>
<tr><th>Survey Root</th><th>Survey Selection</th><th>Timestamp</th></tr>
<tr>
<th>Survey Root</th>
<th>Survey Selection</th>
<th>Timestamp</th>
</tr>
</thead>
<tbody id="tableBody"></tbody>
</table>
Expand Down
15 changes: 15 additions & 0 deletions take-survey.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ header {
z-index: 10;
}

table {
margin: auto;
border-collapse: collapse; /* Ensures borders touch */
}
/* Style for the table cells */
td, th {
border: 1px solid #0ff; /* Example color: blue */
padding: 8px; /* Adjusts the padding inside cells for aesthetics */
}
/* Optional: Style for table headers */
th {
background-color: #0ff; /* Slightly darker blue for headers */
color: black; /* White text for contrast */
}

h1 {
font-size: 3em;
margin: 10px;
Expand Down

0 comments on commit 9717dfb

Please sign in to comment.