body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: rgba(0, 0, 0, 0.7);
background-size: cover;
background-position: center;
color: white;
}
input, button {
margin-bottom: 10px;
padding: 10px;
}
#movie-details {
margin-top: 20px;
padding: 20px;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 10px;
color: white;
max-width: 50%;
flex: 1;
}
#movie-poster {
max-width: 200px;
height: auto;
border-radius: 10px;
}
#content-wrapper {
display: flex;
justify-content: space-between;
width: 100%;
}
#movie-frame {
width: 800px;
height: 450px;
border: none;
border-radius: 10px;
}
h1 {
text-align: center;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
button {
background-color: #007BFF;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
.widget-title {
text-align: center;
font-size: 2.5em;
margin-bottom: 20px;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
.movie-grid {
display: flex;
flex-wrap: wrap;
gap: 15px;
padding: 10px;
background-color: rgba(0, 0, 0, 0.6);
border-radius: 10px;
max-width: 100%;
}
.movie {
position: relative;
overflow: hidden;
width: 200px;
}
.movie-title {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 5px;
text-align: center;
font-weight: bold;
}
.movie img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
transition: transform 0.2s;
cursor: pointer; /* Cursor verandert naar pointer */
}
.movie img:hover {
transform: scale(1.05);
}
Gemiddelde beoordeling: / 10