You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
666 B
43 lines
666 B
7 years ago
|
|
||
|
.board{
|
||
|
.results{
|
||
|
.item{
|
||
|
padding: 5px;
|
||
|
transition: .4s;
|
||
|
font-size: $font-14;
|
||
|
|
||
|
.fa{
|
||
|
padding: 0 5px;
|
||
|
transition: .4s;
|
||
|
}
|
||
|
|
||
|
&:hover{
|
||
|
background: $light-grey;
|
||
|
.fa{
|
||
|
margin-left: 5px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.sheet{
|
||
|
position: relative;
|
||
|
padding: 20px;
|
||
|
background: $light-grey;
|
||
|
border-radius: 5px;
|
||
|
|
||
|
.name{
|
||
|
font-size: $font-16;
|
||
|
font-weight: bold;
|
||
|
color: $red;
|
||
|
border-bottom: 1px dotted $grey;
|
||
|
}
|
||
|
|
||
|
p{
|
||
|
font-size: $font-12;
|
||
|
border-bottom: 1px dotted $grey;
|
||
|
padding: 6px 0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|