mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-10 09:52:51 +00:00
28 lines
489 B
SCSS
28 lines
489 B
SCSS
.SensorList{
|
|
.row{
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
margin-left: -1em;
|
|
margin-right: -1em;
|
|
padding: 1em;
|
|
|
|
&:hover{
|
|
background-color: #D1D1D1;
|
|
}
|
|
|
|
.item + .item{
|
|
margin-left: 1em;
|
|
}
|
|
|
|
h2{
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.date{
|
|
font-size: .8em;
|
|
}
|
|
}
|
|
|
|
} |