diff --git a/index.css b/index.css index efa041e..2e87909 100644 --- a/index.css +++ b/index.css @@ -1,14 +1,54 @@ +body { + font-family: cursive; +} + #header { display: flex; justify-content: space-between; + border-bottom: 2px solid gray; + margin: 0 1em 2em; } #buttons { display: flex; + margin: 0 1em; } #buttons button { - height: 2em; - margin: 1em; + font-family: cursive; + padding: .5em 1em; + font-size: 1rem; + margin: 0 2em; align-self: center; + background-color: white; + border: 2px solid black; + box-shadow: 2px 2px black; +} + +#buttons button:hover { + background-color: #EEE; + cursor: pointer; +} + +#products { + display: flex; + flex-wrap: wrap; +} + +.product { + width: 150px; + height: 150px; + display: flex; + flex-direction: column; + justify-content: center; + text-align: center; + border: 2px solid black; + margin: 1em; + position: relative; +} + +.delete-checkbox { + border: 1px solid black; + position: absolute; + top: 0px; } diff --git a/index.php b/index.html similarity index 75% rename from index.php rename to index.html index dc8eecd..ad256d6 100644 --- a/index.php +++ b/index.html @@ -13,12 +13,8 @@ - +