React

App.css
mail@pastecode.io avatar
unknown
css
17 days ago
676 B
3
Indexable
Never
.app {
  font-family: Arial, sans-serif;
  text-align: center;
}

header {
  background-color: #282c34;
  color: white;
  padding: 1rem;
}

.current-movie {
  margin: 2rem;
}

.movie-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 1rem;
  padding: 1rem;
  display: inline-block;
  width: 200px;
  text-align: left;
}

.movie-box img {
  width: 100%;
  border-radius: 8px;
}

button {
  background-color: #61dafb;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

button:hover {
  background-color: #21a1f1;
}

.other-movies {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
Leave a Comment