nodejs-app-first-dockerfile

This commit is contained in:
todd
2025-01-05 10:41:51 -06:00
parent 657c8bb4d9
commit 92ae9920a5
4 changed files with 117 additions and 0 deletions

48
public/styles.css Normal file
View File

@@ -0,0 +1,48 @@
html {
font-family: sans-serif;
}
body {
margin: 0;
}
section,
form {
padding: 1rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
margin: 2rem auto;
max-width: 40rem;
}
.form-control {
margin: 0.5rem 0;
}
input {
font: inherit;
}
input,
label {
display: block;
}
label {
font-weight: bold;
margin-bottom: 0.5rem;
}
button {
background-color: #2f005a;
border: 1px solid #2f005a;
color: white;
cursor: pointer;
padding: 0.5rem 1.5rem;
}
button:hover,
button:active {
background-color: #50005a;
border-color: #50005a;
}