gammatools/web/styles.css

20 lines
692 B
CSS
Raw Normal View History

2024-06-25 10:05:57 +00:00
.form-row {
display: flex;
justify-content: space-between;
margin-bottom: 1em;
}
.form-field {
display: flex;
flex-direction: row; /* changed this from column */
align-items: center; /* added this to vertically align elements in the row */
justify-content: space-between; /* added this to put some space between the label and the input field */
width: 200px; /* optionally set a width to keep it consistent */
}
.content-container {
max-width: 500px; /* adjust the max width as per requirement */
/* this line centers your container */
margin: 20px 0px 0 20px;
padding: 0 20px; /* bit of padding so content doesn't touch the edges */
}