gtranslate/static/style.css

48 lines
524 B
CSS
Raw Normal View History

2021-01-17 20:09:57 +00:00
body {
font-family: sans-serif;
}
.title {
text-align: center;
}
2021-01-18 18:59:14 +00:00
.main-section {
2021-01-17 20:09:57 +00:00
max-width: 90rem;
margin: 5px auto;
}
2021-01-18 18:59:14 +00:00
.form {
display: flex;
flex-direction: column;
2021-01-17 20:09:57 +00:00
}
.form__field {
display: flex;
align-items: center;
2021-01-18 18:59:14 +00:00
margin: 4px;
}
2021-01-17 20:09:57 +00:00
2021-01-18 18:59:14 +00:00
.form__field .form__label {
margin-right: 8px;
2021-01-17 20:09:57 +00:00
}
2021-01-18 18:59:14 +00:00
.form__input,
.textarea,
.translation {
font-size: 1rem;
padding: 4px;
2021-01-17 20:09:57 +00:00
}
.form__button {
2021-01-18 18:59:14 +00:00
padding: 4px 10px;
2021-01-17 20:09:57 +00:00
}
.textarea {
resize: vertical;
2021-01-18 18:59:14 +00:00
height: 5rem;
2021-01-17 20:09:57 +00:00
2021-01-18 18:59:14 +00:00
/* Stretch to form width */
width: 100%;
2021-01-17 20:09:57 +00:00
}