2024-05-29 22:23:51 +02:00

84 lines
1.2 KiB
CSS

#creation-container {
width: 80%;
margin-top: 30px;
flex-direction: column;
}
.save-buttons {
width: 75%;
margin-top: 30px;
}
.save-button {
padding: 10px;
width: 40%;
margin-left: 20px;
margin-right: 20px;
border-radius: 5px;
}
.form-data {
width: 100%;
flex-direction: row;
margin-top: 10px;
}
.form-data-label {
width: 30%;
}
.form-data-element {
width: 70%;
}
.transaction-table {
width: 100%;
margin-top: 20px;
}
.transaction-table,
.transaction-th,
.transaction-td {
border: 1px solid rgb(105, 105, 105);
border-collapse: collapse;
text-align: center;
}
.transaction-th {
padding: 5px 20px;
}
.transaction-td {
padding: 10px;
}
.transaction-input {
width: 100%;
display: block;
width: 100%;
height: 35px;
-ms-box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
th > .action-button {
font-size: larger;
background-color: rgb(0, 84, 6);
color: #fff;
border: 1px solid #fff;
border-radius: 5px;
height: 35px;
width: 50px;
}
td > .action-button {
background-color: rgb(151, 0, 0);
color: #fff;
border: 1px solid #fff;
border-radius: 5px;
height: 35px;
width: 50px;
}