links/app/assets/stylesheets/web_resources_front.css.scss

48 lines
1.0 KiB
SCSS
Raw Normal View History

2021-08-11 03:27:57 +00:00
// Place all the styles related to the act controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
2021-08-12 06:14:15 +00:00
.index-link{
2021-08-11 03:27:57 +00:00
.link-img-wrap {
2021-09-01 10:56:03 +00:00
display: inline-block;
2021-08-12 06:14:15 +00:00
width: 30%;
2021-08-12 06:18:30 +00:00
@media (max-width: 768px){
2021-08-12 06:14:15 +00:00
width: 50%;
}
2021-08-11 03:27:57 +00:00
overflow: hidden;
img {
max-height: 100%;
max-width: 100%;
height: auto;
width: auto;
}
}
2021-08-12 06:14:15 +00:00
}
.index-link.index2 li.col-md-4{
float: left;
.link-img-wrap {
height: 12.5em;
width: auto;
}
2021-08-11 03:27:57 +00:00
a:hover .link-title{
color: #0032b2;
font-size: 1.15em;
}
@media (min-width: 992px){
width: 33.3333%;
}
@media (min-width: 577px) and (max-width: 991px){
width: 50%;
}
@media (max-width: 576px){
width: 100%;
2021-08-12 06:14:15 +00:00
a .link-img-wrap {
2021-08-11 03:27:57 +00:00
height: auto;
}
}
2021-08-12 06:18:30 +00:00
@media (max-width: 768px){
.link-img-wrap {
width: auto;
}
}
2021-09-01 10:56:03 +00:00
}