mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
119 lines
1.5 KiB
CSS
119 lines
1.5 KiB
CSS
.searchResult {
|
|
position: relative;
|
|
margin: 20px 0;
|
|
padding: 20px;
|
|
width: 100%;
|
|
color: inherit;
|
|
}
|
|
|
|
.underlay {
|
|
@add-mixin cover;
|
|
|
|
background-color: $white;
|
|
transition: background 500ms;
|
|
|
|
&:hover {
|
|
background-color: #eaf2ff;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.overlay {
|
|
@add-mixin linkOverlay;
|
|
|
|
position: relative;
|
|
display: flex;
|
|
}
|
|
|
|
.poster {
|
|
position: relative;
|
|
display: block;
|
|
margin-right: 20px;
|
|
height: 250px;
|
|
background-color: $defaultColor;
|
|
}
|
|
|
|
.content {
|
|
flex: 0 1 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.titleRow {
|
|
display: flex;
|
|
}
|
|
|
|
.titleContainer {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.title {
|
|
font-weight: 300;
|
|
font-size: 36px;
|
|
}
|
|
|
|
.year {
|
|
margin-left: 10px;
|
|
color: $disabledColor;
|
|
}
|
|
|
|
.icons {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex: 1 0 auto;
|
|
height: 55px;
|
|
}
|
|
|
|
.alreadyExistsIcon {
|
|
margin-left: 10px;
|
|
color: #37bc9b;
|
|
pointer-events: all;
|
|
}
|
|
|
|
.exclusionIcon {
|
|
margin-left: 10px;
|
|
color: $dangerColor;
|
|
pointer-events: all;
|
|
}
|
|
|
|
.overview {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.links {
|
|
margin-left: 8px;
|
|
pointer-events: all;
|
|
}
|
|
|
|
.posterContainer {
|
|
position: relative;
|
|
}
|
|
|
|
.certification {
|
|
margin-left: 2px;
|
|
padding: 0 5px;
|
|
border: 1px solid;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.runtime {
|
|
margin-left: 8px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.statusContainer {
|
|
margin-right: 22px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointMedium) {
|
|
.titleRow {
|
|
justify-content: space-between;
|
|
overflow: hidden;
|
|
}
|
|
}
|