50 lines
890 B
SCSS
50 lines
890 B
SCSS
// Place all the styles related to the thesesCrawler controller here.
|
|
// They will automatically be included in application.css.
|
|
// You can use Sass (SCSS) here: https://sass-lang.com/
|
|
|
|
.theses-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
.thesis {
|
|
line-height: 72px;
|
|
width: 100%;
|
|
padding: 8px 0 8px 0;
|
|
|
|
.list-link {
|
|
float: left;
|
|
width: 89%;
|
|
height: 72px;
|
|
}
|
|
|
|
.thesis-title {
|
|
width: 100%;
|
|
display: inline-block;
|
|
text-align: left;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.add-to-fav {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
float: right;
|
|
width: 36px;
|
|
height: 36px;
|
|
|
|
svg {
|
|
width: 100%;
|
|
height: auto;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
}
|
|
}
|