FunctionProject/website/components/FunctionsList/FunctionsList.css

41 lines
778 B
CSS
Raw Normal View History

.Functions__title {
2020-08-03 14:14:45 +02:00
padding: 20px 0 20px 0;
margin-bottom: 0;
}
.Functions__form-control {
2020-08-03 14:14:45 +02:00
display: block;
height: calc(1.5em + 0.75rem + 2px);
padding: 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: 0.5em;
}
.Functions__search-container {
2020-08-03 14:14:45 +02:00
margin-bottom: 50px;
}
.Functions__select-option {
2020-08-03 14:14:45 +02:00
color: rgb(221, 220, 220);
}
.Functions__search-input {
2020-08-03 14:14:45 +02:00
width: 40%;
2020-03-19 17:46:43 +01:00
}
/* col-sm */
@media (max-width: 576px) {
2020-08-03 14:14:45 +02:00
.Functions__search-container {
flex-direction: column;
align-items: center;
}
.Functions__select {
width: 90%;
margin-bottom: 5px;
}
.Functions__search-input {
width: 90%;
}
}