scandiweb-products/static/stylesheet.css

78 lines
969 B
CSS
Raw Permalink Normal View History

2022-07-27 06:59:59 -04:00
body {
font-family: cursive;
}
2022-07-27 06:01:33 -04:00
#header {
display: flex;
justify-content: space-between;
2022-07-27 06:59:59 -04:00
border-bottom: 2px solid gray;
margin: 0 1em 2em;
2022-07-27 06:01:33 -04:00
}
#buttons {
display: flex;
2022-07-27 06:59:59 -04:00
margin: 0 1em;
2022-07-27 06:01:33 -04:00
}
2022-07-28 08:16:55 -04:00
.header-button {
2022-07-27 11:44:08 -04:00
align-self: center;
2022-07-28 08:16:55 -04:00
margin: 0 2em;
2022-07-27 11:44:08 -04:00
}
2022-07-27 06:01:33 -04:00
#buttons button {
2022-07-27 06:59:59 -04:00
font-family: cursive;
padding: .5em 1em;
font-size: 1rem;
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;
2022-07-27 06:01:33 -04:00
}
2022-07-28 08:16:55 -04:00
.hidden {
display: none;
}
#main {
margin: 2em;
}
.form-section {
margin: 2em;
}
td:nth-child(2) {
padding-left: 2em;
}
#productType {
margin-left: 2em;
}