mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-27 05:01:23 +01:00
27 lines
562 B
SCSS
27 lines
562 B
SCSS
|
.sponsors {
|
||
|
h5 {
|
||
|
margin-top: 30px;
|
||
|
}
|
||
|
.list-inline {
|
||
|
margin-bottom: 65px;
|
||
|
li {
|
||
|
width: 16%;
|
||
|
min-width: 180px;
|
||
|
max-width: 250px;
|
||
|
margin: 13px 7px;
|
||
|
@media (max-width: 767px) {
|
||
|
width: 40%;
|
||
|
min-width: 120px;
|
||
|
max-width: 180px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
img {
|
||
|
width: 100%;
|
||
|
transition: $base-transition;
|
||
|
filter: grayscale(1);
|
||
|
&:hover {
|
||
|
filter: grayscale(0);
|
||
|
}
|
||
|
}
|
||
|
}
|