File size: 1,703 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
.rmdb-movieinfo {
background-size: cover !important;
background-position: center !important;
width: 100%;
height: 600px;
padding: 40px 20px;
box-sizing: border-box;
animation: animateMovieinfo 1s;
}
@keyframes animateMovieinfo {
from {
opacity:0;
}
to {
opacity:1;
}
}
.rmdb-movieinfo-content {
max-width: 1280px;
width: 100%;
height: 100%;
margin: 0 auto;
background: rgb(0, 0, 0, 0.7);
position: relative;
}
.rmdb-movieinfo-thumb {
width: 350px;
height: 100%;
overflow: hidden;
position: absolute;
left: 0px;
}
.rmdb-movieinfo-text {
font-family: Arial, Helvetica, sans-serif;
height: 100%;
width: auto;
padding: 40px;
color: #fff;
overflow: hidden;
box-sizing: border-box;
position: absolute;
left: 360px;
}
.rmdb-movieinfo-text h1 {
font-family: 'Abel', sans-serif;
font-size:48px;
margin: 0;
}
.rmdb-movieinfo-text h3 {
font-size: 16px;
line-height: 0;
margin-top: 30px;
}
.rmdb-movieinfo-text p {
font-family: 'Abel', sans-serif;
font-size: 18px;
line-height: 26px;
}
.rmdb-rating {
width: 250px;
height: 20px;
margin-top: 20px;
position: relative;
}
.rmdb-score {
position: absolute;
margin: 0;
right: 0px;
top: -3px;
}
.rmdb-director {
margin: 0;
}
.fa-film {
position: absolute;
bottom: 40px;
right: 40px;
color: #fff;
}
meter::-webkit-meter-bar {
background: #FFF;
width:200px;
}
meter::-webkit-meter-optimum-value {
background: linear-gradient(to bottom, #16d47b);
}
meter::-webkit-meter-suboptimum-value {
background: linear-gradient(to bottom, #fbb450);
}
meter::-webkit-meter-even-less-good-value {
background: linear-gradient(to bottom, #ee5f5b);
} |