42 lines
708 B
SCSS
Raw Normal View History

2018-07-06 13:47:25 +02:00
@import './assets/styles/global.scss';
.search-results {
2018-07-09 16:29:57 +02:00
li {
margin-bottom: calculateRem(32);
cursor: pointer;
h3 {
font-size: calculateRem(18);
margin-bottom: calculateRem(8);
2018-07-11 11:18:07 +02:00
color: #fff;
2018-07-09 16:29:57 +02:00
}
h5 {
font-size: calculateRem(16);
margin-bottom: calculateRem(8);
2018-07-11 11:18:07 +02:00
color: #fff;
2018-07-09 16:29:57 +02:00
}
p {
font-size: calculateRem(14);
span {
position: relative;
&::before {
content: '';
position: absolute;
top: -10%;
2018-07-13 11:11:32 +02:00
left: -2%;
2018-07-09 16:29:57 +02:00
height: 120%;
2018-07-13 11:11:32 +02:00
width: 104%;
2018-07-11 11:18:07 +02:00
background-color: $red;
color: $navy;
2018-07-09 16:29:57 +02:00
z-index: -1;
}
}
}
}
2018-07-06 13:47:25 +02:00
}