OpenMediaCenter/src/css/Preview.css

39 lines
550 B
CSS
Raw Normal View History

2020-05-31 20:24:35 +02:00
.previewtitle {
height: 10%;
color: white;
text-align: center;
}
.previewpic {
height: 80%;
}
2020-06-01 21:36:55 +02:00
.previewimage {
width: 100%;
height: 100%;
2020-05-31 20:24:35 +02:00
}
.videopreview {
height: 300px;
width: 30%;
float: left;
margin: 1%;
background-color: #7F7F7F;
cursor: pointer;
opacity: 0.9;
border: 10px;
border-radius: 20px;
}
.videopreview:hover {
opacity: 1;
transition: opacity 0.5s;
}
/* todo check if neccessary*/
.previewcontainer {
margin-left: 10%;
width: 80%;
margin-right: 10%;
}