মিডিয়াউইকি:Common.css: সংশোধিত সংস্করণের মধ্যে পার্থক্য
সম্পাদনা সারাংশ নেই ট্যাগ: পুনর্বহালকৃত |
সম্পাদনা সারাংশ নেই ট্যাগ: পুনর্বহালকৃত |
||
৩৪ নং লাইন: | ৩৪ নং লাইন: | ||
*/ | */ | ||
/* | /* Make the main content area a flex container */ | ||
.page-content { | .page-content { | ||
display: flex; | display: flex; | ||
flex-direction: row; /* Keep content in a row */ | |||
flex-wrap: wrap; | flex-wrap: wrap; | ||
} | } | ||
/* | /* Infobox on the right side */ | ||
.infobox { | .infobox { | ||
float: right; | float: right; | ||
margin-left: 20px; | margin-left: 20px; /* Space between text and infobox */ | ||
width: 300px; /* Adjust the width as necessary */ | |||
margin-bottom: 20px; | margin-bottom: 20px; | ||
} | } | ||
/* | /* Content on the left side */ | ||
.page-content .text-content { | .page-content .text-content { | ||
width: calc(100% - 320px); /* Adjust | width: calc(100% - 320px); /* Adjust based on infobox width */ | ||
padding-right: 20px; | padding-right: 20px; | ||
margin-top: 20px; | margin-top: 20px; | ||
} | } | ||
/* | /* Prevent content overflow */ | ||
body { | body { | ||
overflow-x: hidden; | overflow-x: hidden; | ||
} | } |