This repository has been archived on 2025-03-25. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
movie-react-app/src/styles/Actor.module.css
2022-11-08 15:43:47 -05:00

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;
}