aboutsummaryrefslogblamecommitdiffstats
path: root/panel/src/pages/ManageAds.css
blob: f6d805ec4b98d6cd3b70be8e2974838bb5dace64 (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;
}

.manage-ads-list {
  width: 100%;
  margin-top: 20px;
}

.ad-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #f9fafc;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ad-item h6 {
  font-size: 18px;
  color: #333;
  margin: 0;
}

.ad-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.ad-item img,
.ad-item video {
  width: 100px;
  height: auto;
  border-radius: 10px;
  margin-right: 15px;
}

.ad-item-actions {
  display: flex;
  align-items: center;
}

.ad-item-actions button {
  background: none;
  border: none;
  margin: 0 5px;
  cursor: pointer;
}

.ad-item-actions button svg {
  fill: #333;
}

.add-ad-button {
  margin-top: 20px;
}

.add-ad-dialog {
  padding: 20px;
}

.add-ad-dialog input[type="file"] {
  margin-top: 10px;
  margin-bottom: 20px;
}

.add-ad-dialog button {
  margin-top: 20px;
}