মিডিয়াউইকি:Epub.css
পরিভ্রমণে চলুন
অনুসন্ধানে চলুন
টীকা: সংরক্ষণ করার পর, পরিবর্তনসমূহ তৎক্ষণাৎ নাও দেখাতে পারে। আপনার ব্রাউজারের ক্যাশ কিভাবে এড়াবেন তা জানতে এখানে ক্লিক করুন।
- ফায়ারফক্স / সাফারি: Shift ধরে রাখা অবস্থায়পুনঃলোড করুন-এ ক্লিক করুন, অথবা Ctrl-F5 বা Ctrl-R (ম্যাক-এ ⌘-R) চাপুন
- গুগল ক্রোম: Ctrl-Shift-R (ম্যাক-এ ⌘-Shift-R) চাপুন
- ইন্টারনেট এক্সপ্লোরার: Ctrl ধরে রাখা অবস্থায় Refresh-এ ক্লিক করুন, অথবা Ctrl-F5 চাপুন
- অপেরা: মেনু → ব্যবস্থাপনাসমূহ-এ যান (ম্যাকে অপেরা → পছন্দসমূহ) এবং এরপর গোপনীয়তা ও সুরক্ষা → ব্রাউজিং-এর তথ্য পরিষ্কার করুন → ক্যাশে করা ছবি ও ফাইলগুলি।
অন্যান্য ব্রাউজার সম্পর্কে বিশদ নির্দেশাবলীর জন্য, উইকিপিডিয়া:আপনার ক্যাশে বাইপাস করুন দেখুন।
/* This stylesheet affects the style used for ePub export via wsexport. */
.mw-parser-output {
text-align: justify; /* most text is justified */
}
/*
* Used for centered images
*
* Copies site-global CSS in load.php
*/
.center {
width: 100%;
text-align: center;
}
.center * {
margin-left: auto;
margin-right: auto;
}
/*
* Left/right-floated images
* e.g. [[File:Foo.jpg|left]]
*/
.floatleft {
float: left;
clear: left;
}
.floatright {
float: right;
clear: right;
}
/* centered image */
.mw-halign-center {
display: table;
margin: auto;
}
.tiInherit,
/* this one is to override some e-readers' own "helpful" CSS */
.tiInherit p {
text-indent: inherit;
}
/*
* Force images to fit in their containers.
* Specifically, this is to avoid them extending off the page
*/
.content a > img,
.content noscript > img {
max-width:100% !important;
height:auto !important
}
/*
* Sidenotes
*/
.wst-sidenote-right {
float:right;
clear: right;
max-width: 8.5em;
padding: .2em;
text-indent: 0;
border: 1px solid gray;
margin: .4em;
overflow-wrap: break-word;
}
.wst-sidenote-left{
float:left;
clear: left;
max-width: 8.5em;
padding: .2em;
text-indent: 0;
border: 1px solid gray;
margin: .4em;
overflow-wrap: break-word;
}
/*
* Use the same formatting choices as on-wiki for consistency
*/
dt {
font-weight: normal;
font-size: 90%;
margin-bottom: 0.1em;
}
/**
* Remove this forced background color as the dots are not exported
*/
.toc-line-entry-text {
background: transparent !important;
}
/* Prevent huge DHR's which usually result in content disappearing over page
* breaks */
.wst-dhr {
line-height: 100% !important;
}
/* Make sure tables fit on the page (even if a manual size if set) */
/* and generally avoid breaking in the middle of them */
table {
max-width: 100%;
break-inside: avoid;
}
/*
* Centre table header like on-wiki
*/
table caption {
text-align: center;
}
/*
* The double-float for the drop initials works for the margins on the inner
* initial, but it trips up some Epub engine, so nerf it for now.
* Eventually, the margins on {{di}} should be set on the top element and this
* will be easier.
*/
.ws-poem-hi span.dropinitial-initial {
float:none;
}
/*
* Disable "helpful" auto-indents for poems in some e-readers
* (note: this means using <poem> is better than <br/>, which has no semantic
* content and can't be used to target this styling)
*/
.poem, .poem p {
text-indent: 0;
}
/*
* Disable the indented-page pagenumber margin styles
*/
.indented-page, .prose {
margin: inherit;
padding: inherit;
}
/*
* Add Bengali numerals for citation
*/
ol li {
list-style-type: bengali;
}
/* This generally doesn't export well, so fall back on the inner em-dashes
* revisit this if it can be improved in readers */
.wst-bar-inner {
color: inherit !important;
}
.wst-bar {
text-decoration: inherit !important;
}
/* normally this would not be included anyway as exports don't come from the page NS,
* but sometimes it's useful to do so when debugging EPUBs */
.prp-page-qualityheader {
display: none;
}