Blazor/BlazorApp/Components/Pages/ValidationPage/Validation.razor.css

34 lines
495 B
CSS

.form-group {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 10px;
}
.form-group label {
width: 100px;
text-align: right;
margin-right: 10px;
padding-right: 4px;
}
.form-group input {
flex: 1;
width: 500px;
}
.form-actions {
display: flex;
justify-content: center;
margin-top: 10px;
}
.success-message {
color: blue;
font-weight: bold;
/*text-align: left;*/
height: 100%;
margin-left: 10px;
}