বিষয়বস্তুতে চলুন

মিডিয়াউইকি:Common.css: সংশোধিত সংস্করণের মধ্যে পার্থক্য

From ওয়ার্ল্ডপিডিয়া, the free encyclopedia
ট্যাগ: প্রতিস্থাপিত হাতদ্বারা প্রত্যাবর্তন
সম্পাদনা সারাংশ নেই
১ নং লাইন: ১ নং লাইন:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
.infobox-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.infobox {
  width: 300px;
  float: right;
  margin-left: 20px;
}
.content {
  flex-grow: 1;
  max-width: 800px;
  margin-right: 320px;
}
@media (max-width: 768px) {
  .infobox {
    float: none;
    width: 100%;
    margin: 0;
  }
  .content {
    margin-right: 0;
    width: 100%;
  }
}

১৫:৫৩, ২ মার্চ ২০২৫ তারিখে সংশোধিত সংস্করণ

/* CSS placed here will be applied to all skins */
.infobox-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.infobox {
  width: 300px;
  float: right;
  margin-left: 20px;
}

.content {
  flex-grow: 1;
  max-width: 800px;
  margin-right: 320px;
}

@media (max-width: 768px) {
  .infobox {
    float: none;
    width: 100%;
    margin: 0;
  }
  .content {
    margin-right: 0;
    width: 100%;
  }
}