MediaWiki: Tweeki.css: Perbedaan antara revisi
Dari GBI Danau Bogor Raya
kTidak ada ringkasan suntingan Tanda: Dikembalikan |
Tidak ada ringkasan suntingan |
||
| (9 revisi perantara oleh pengguna yang sama tidak ditampilkan) | |||
| Baris 1: | Baris 1: | ||
/* CSS placed here will affect users of the Tweeki skin */ | /* CSS placed here will affect users of the Tweeki skin */ | ||
@import url('https://cdn.jsdelivr.net/npm/bootswatch@5.3.3/dist/flatly/bootstrap.min.css'); | |||
page-Main_Page {padding-top: 0;} | /* .page-Main_Page#content {padding-top: 0;} */ | ||
page- | |||
.page-Main_Page.mw-body {padding-top: 0;} | |||
.page-Utama.mw-body {padding-top: 0;} | |||
#catlinks {display:none;} | #catlinks {display:none;} | ||
| Baris 62: | Baris 64: | ||
a: hover { text-decoration: underline; } | a: hover { text-decoration: underline; } | ||
/* | |||
Source - https://stackoverflow.com/a/79331363 | |||
Posted by MoBadraan, modified by community. See post 'Timeline' for change history | |||
Retrieved 2026-07-18, License - CC BY-SA 4.0 | |||
*/ | |||
@media print { | |||
body { | |||
display: contents; | |||
} | |||
#navbar, | |||
footer { | |||
display: none; | |||
} | |||
#content { | |||
margin: 0; | |||
padding: 0; | |||
width: 100%; | |||
} | |||
} | |||
/* Mengubah fluid menjadi fixed container mulai dari layar medium (768px ke atas) */ | |||
@media (min-width: 768px) { | |||
.tweeki-container { | |||
max-width: 720px; | |||
margin-right: auto; | |||
margin-left: auto; | |||
} | |||
} | |||
/* Menyesuaikan lebar untuk layar besar / large (992px ke atas) */ | |||
@media (min-width: 992px) { | |||
.tweeki-container { | |||
max-width: 960px; | |||
} | |||
} | |||
/* Menyesuaikan lebar untuk layar sangat besar / extra large (1200px ke atas) */ | |||
@media (min-width: 1200px) { | |||
.tweeki-container { | |||
max-width: 1140px; | |||
} | |||
} | |||
Revisi terkini sejak 30 Juli 2026 13.24
/* CSS placed here will affect users of the Tweeki skin */
@import url('https://cdn.jsdelivr.net/npm/bootswatch@5.3.3/dist/flatly/bootstrap.min.css');
/* .page-Main_Page#content {padding-top: 0;} */
.page-Main_Page.mw-body {padding-top: 0;}
.page-Utama.mw-body {padding-top: 0;}
#catlinks {display:none;}
#mw-normal-catlinks { display:none; margin-top: 2em; font-size: small; padding: 1em;
border: 1px #ccc solid; border-radius: 0.25em; }
dl {
margin-bottom: 1rem;
}
dd {
margin-left: 1.7em;
}
#bodyContent .plainlinks a {
background: none;
padding: 0;
}
.stickyheader {
position: sticky;
top: 0 ;
}
.stickycontainer {
width: auto;
height: auto;
overflow: auto;
}
#header-fixed {
position: fixed;
top: 0px;
display: none;
background-color: white;
}
/*
https://www.yellowweb.id/blog/bootstrap-collapse-dengan-merubah-icon/
*/
.accordionwithicon .accordionwithicon-header::after{
content: "▼ ";
float: right;
}
.accordionwithicon .accordionwithicon-header.collapsed::after{
content: "▲";
}
.fancybox-title-float-wrap .child { visibility: hidden; }
a { text-decoration: none; }
a: hover { text-decoration: underline; }
/*
Source - https://stackoverflow.com/a/79331363
Posted by MoBadraan, modified by community. See post 'Timeline' for change history
Retrieved 2026-07-18, License - CC BY-SA 4.0
*/
@media print {
body {
display: contents;
}
#navbar,
footer {
display: none;
}
#content {
margin: 0;
padding: 0;
width: 100%;
}
}
/* Mengubah fluid menjadi fixed container mulai dari layar medium (768px ke atas) */
@media (min-width: 768px) {
.tweeki-container {
max-width: 720px;
margin-right: auto;
margin-left: auto;
}
}
/* Menyesuaikan lebar untuk layar besar / large (992px ke atas) */
@media (min-width: 992px) {
.tweeki-container {
max-width: 960px;
}
}
/* Menyesuaikan lebar untuk layar sangat besar / extra large (1200px ke atas) */
@media (min-width: 1200px) {
.tweeki-container {
max-width: 1140px;
}
}