aboutsummaryrefslogblamecommitdiffstats
path: root/panel/src/pages/ManageAds.css
blob: c9f154e6f99ee8917c9030fd562d41d2fcfff325 (plain) (tree)



















































































                                            
.manage-ads {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f4f7fc;
  min-height: 100vh;
}

.manage-ads-container {
  width: 90%;
  max-width: 1200px;
  margin-top: 20px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.manage-ads-header {
  text-align: center;
  margin-bottom: 30px;
}

.manage-ads-header h4 {
  font-size: 28px;
  color: #333;
}

.ad-form {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.ad-form .form-control {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.ad-form button {
  align-self: flex-start;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.ad-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ad-card {
  flex: 1;
  padding: 20px;
  margin: 10px;
  background-color: #f9fafc;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ad-card img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
}

.ad-card h5 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.ad-card p {
  font-size: 16px;
  color: #666;
}