39 lines
627 B
CSS
39 lines
627 B
CSS
.previewtitle {
|
|
height: 10%;
|
|
color: #3d3d3d;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
max-width: 266px;
|
|
}
|
|
|
|
.previewpic {
|
|
height: 80%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.previewimage {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
.videopreview {
|
|
height: 500px;
|
|
min-width: 266px;
|
|
max-width: 410px;
|
|
/*width: 250px;*/
|
|
float: left;
|
|
margin-left: 25px;
|
|
margin-top: 25px;
|
|
/*background-color: #7F7F7F;*/
|
|
background-color: #a8c3ff;
|
|
cursor: pointer;
|
|
opacity: 0.9;
|
|
border: 10px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.videopreview:hover {
|
|
opacity: 1;
|
|
transition: opacity 0.5s;
|
|
}
|