44 lines
473 B
CSS
44 lines
473 B
CSS
body {
|
|
/* display: flex; */
|
|
/* align-items: center; */
|
|
/* justify-content: center; */
|
|
}
|
|
|
|
input,
|
|
button,
|
|
select {
|
|
padding: 8px;
|
|
background: white;
|
|
border: gray 1px solid;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
button:hover {
|
|
background: gray;
|
|
color: white;
|
|
}
|
|
|
|
input:focus {
|
|
border: black 1px solid;
|
|
}
|
|
|
|
input[type='number'] {
|
|
width: 70px;
|
|
}
|
|
|
|
td {
|
|
padding: 8px;
|
|
}
|
|
|
|
#tambah {
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.namamenuinput {
|
|
width: 400px;
|
|
}
|
|
|
|
#menubaru {
|
|
margin-top: 44px;
|
|
}
|