71 lines
927 B
CSS
71 lines
927 B
CSS
.Container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 15px;
|
|
color: white;
|
|
}
|
|
|
|
.Name {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.Biography {
|
|
-webkit-box-orient: vertical;
|
|
font-size: 1.3em;
|
|
white-space: pre-line;
|
|
display: -webkit-box;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.Images {
|
|
display: flex;
|
|
overflow: scroll;
|
|
align-items: start;
|
|
gap: 15px;
|
|
height: 200px;
|
|
}
|
|
|
|
.Image {
|
|
height: 100%;
|
|
}
|
|
|
|
.Section div {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.Collapsed {
|
|
-webkit-line-clamp: 5;
|
|
}
|
|
|
|
.Collapse {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.Credits {
|
|
display: flex;
|
|
width: 100%;
|
|
gap: 20px;
|
|
overflow: scroll;
|
|
}
|
|
|
|
.ReadMore {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.Movie {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-decoration: none;
|
|
color: white;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
.Movie:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.Movie img {
|
|
height: 300px;
|
|
}
|