implemented hashbrown assignment.

This commit is contained in:
2025-04-17 14:58:51 -06:00
parent 5e88f52c21
commit d1097bedb3
157 changed files with 1038 additions and 12514 deletions
+51
View File
@@ -0,0 +1,51 @@
body {
background-color: black;
}
h1,
p,
input,
.cell {
color: white;
}
.cell {
background-color: black;
outline: none;
border: 1px solid white;
transition-duration: 500ms;
}
.cell:hover {
background-color: orange;
}
.button {
padding: 15px;
margin: 35px;
border: 3px solid white;
border-radius: 9px;
background-color: transparent;
transition-duration: 500ms;
}
.button:hover {
background-color: orange;
}
#content {
margin: 35px;
width: 40%;
margin: 0 auto;
border: 3px solid white;
border-radius: 18px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.row {
display: flex;
justify-content: space-evenly;
}