mirror of
https://github.com/status-im/ETHReport.git
synced 2025-01-31 08:35:46 +00:00
39 lines
650 B
SCSS
39 lines
650 B
SCSS
@import './assets/styles/global.scss';
|
|
|
|
.search-results {
|
|
|
|
li {
|
|
margin-bottom: calculateRem(32);
|
|
cursor: pointer;
|
|
|
|
h3 {
|
|
font-size: calculateRem(18);
|
|
margin-bottom: calculateRem(8);
|
|
}
|
|
|
|
h5 {
|
|
font-size: calculateRem(16);
|
|
margin-bottom: calculateRem(8);
|
|
}
|
|
|
|
p {
|
|
font-size: calculateRem(14);
|
|
|
|
span {
|
|
position: relative;
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -10%;
|
|
left: -15%;
|
|
height: 120%;
|
|
width: 130%;
|
|
background-color: #efefef;
|
|
z-index: -1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|