Files
godot-asset-library/style/base.css
2017-09-13 20:44:03 +03:00

34 lines
691 B
CSS

.form-search .form-group {
margin-bottom: 0.2em;
margin-right: 40px;
}
@media screen and (max-width: 768px) {
.form-search .form-group {
margin-right: 0;
}
}
@supports (display: flex) {
@media screen and (min-width: 768px) {
.form-search {
display: flex;
justify-content: space-between;
flex-flow: wrap;
}
.form-search .form-group {
margin-right: 1em;
margin-left: 1em;
flex-shrink: 0;
display: block;
}
}
}
.required_mark::after {
content: ' *';
color: #d9534f;
}
.media-object {
overflow: hidden;
text-overflow: ellipsis;
}