Spaces:
Runtime error
Runtime error
File size: 1,031 Bytes
63858e7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
#sentence-input {
margin-bottom: -30px;
margin-right: -30px;
margin-left: 10px;
width: 90%;
}
#sentence-input form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#sentence-input form .form-group {
-webkit-box-flex: 3;
-ms-flex-positive: 3;
flex-grow: 3;
}
#sentence-input form .form-group input {
width: 100%;
margin-right: 5%;
}
#sentence-input form .padding {
-webkit-box-flex: 0.3;
-ms-flex-positive: 0.3;
flex-grow: 0.3;
}
#sentence-input form .btn {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
}
/*# sourceMappingURL=SentenceInput.css.map */ |