feature-change-applier/src/PhonoChangeApplier.scss

61 lines
1.2 KiB
SCSS
Raw Normal View History

2020-02-29 01:44:36 +00:00
@import '../public/stylesheets/variables';
div.App {
max-height: 100vh;
max-width: 100vw;
line-height: 1.25em;
padding: 1em;
2020-02-29 01:44:36 +00:00
a {
color: map-get($colors, 'text-input')
}
h1 {
font-size: 2em;
padding: 1em 0;
}
2020-02-26 23:23:39 +00:00
h3 {
font-size: 1.25em;
padding: 0.5em 0;
}
2020-02-27 00:27:45 +00:00
h5 {
font-size: 1.1em;
padding: 0.1em 0;
font-weight: 800;
}
2020-02-29 01:44:36 +00:00
div.PhonoChangeApplier--gui {
display: grid;
width: 100%;
place-items: center center;
grid-template-columns: repeat(auto-fit, minmax(25em, 1fr));
grid-template-rows: repeat(auto-fill, minmax(300px, 1fr));
div {
max-width: 100%;
2020-02-27 00:16:52 +00:00
max-height: 85vh;
margin: 1em;
overflow-y: scroll;
}
}
button.form, input[type="submit"].form, input[type="button"].form {
height: 2em;
border-radius: 0.25em;
border-color: transparent;
margin: 0.2em auto;
width: 10em;
}
button.form--add, input[type="submit"].form--add, input[type="button"].form--add{
background-color: greenyellow;
color: black;
}
button.form--remove, input[type="submit"].form--remove, input[type="button"].form--remove {
background-color: red;
color: white;
}
}