pflaenz.li-Symfony/assets/styles/app.scss

43 lines
562 B
SCSS
Raw Normal View History

2021-04-24 16:59:51 +02:00
// assets/styles/global.scss
// customize some Bootstrap variables
2021-04-30 17:08:34 +02:00
$primary: darken(#005035, 20%);
2021-04-24 16:59:51 +02:00
// the ~ allows you to reference things in node_modules
@import "~bootstrap/scss/bootstrap";
2021-04-26 23:50:23 +02:00
2021-05-05 22:11:24 +02:00
.offer > img {
2021-04-26 23:50:23 +02:00
height: 15rem;
object-fit: cover;
}
2021-05-05 22:11:24 +02:00
.offer {
2021-04-26 23:50:23 +02:00
$card-height: 100%;
width: 20rem;
}
.username {
float: left;
}
.zip {
float: right;
2021-04-27 10:20:02 +02:00
}
2021-05-05 22:11:24 +02:00
.offer-container {
2021-04-27 10:20:02 +02:00
padding-top: 2rem;
2021-05-04 14:28:18 +02:00
}
.img-container {
width: 50%;
min-width: 20rem;
}
.offer-info {
width: 50%;
min-width: 20rem;;
2021-05-07 09:55:41 +02:00
}
.offer-footer {
color: #555;
2021-04-26 23:50:23 +02:00
}