MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(28 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* | /* Enhanced styles for a modern look */ | ||
/* Headings */ | |||
h1, h2, h3, h4, h5, h6 { | |||
font-family: 'Open Sans', sans-serif; | |||
color: #333; | |||
} | |||
/* Links */ | |||
a { | |||
color: #7c25b8; | |||
text-decoration: none; | |||
} | |||
a:hover { | |||
color: #5a1d8a; | |||
text-decoration: underline; | |||
} | |||
/* Buttons */ | |||
.button, input[type="submit"], input[type="button"] { | |||
background-color: #7c25b8; | |||
color: white; | |||
border: none; | |||
padding: 10px 20px; | |||
cursor: pointer; | |||
border-radius: 5px; | |||
display: inline-block; | |||
text-align: center; | |||
transition: background-color 0.3s, color 0.3s; | |||
} | |||
.button:hover, input[type="submit"]:hover, input[type="button"]:hover { | |||
background-color: #5a1d8a; | |||
} | |||
/* Forms */ | |||
input[type="text"], input[type="password"], textarea { | |||
border: 1px solid #ccc; | |||
padding: 10px; | |||
border-radius: 5px; | |||
} | |||
/* Enhanced Navigation */ | |||
nav#p-namespaces div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a, | |||
nav#p-views div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a { | |||
padding: 10px 15px; | |||
display: block; | |||
transition: background-color 0.3s, color 0.3s; | |||
} | |||
nav#p-namespaces div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a:hover, | |||
nav#p-views div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a:hover { | |||
background-color: #e3d4f3; | |||
color: #5a1d8a; | |||
} | |||
/* Sidebar Menu */ | |||
nav#p-navigation div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a, | |||
nav#p-tb div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a { | |||
padding: 10px 15px; | |||
display: block; | |||
transition: background-color 0.3s, color 0.3s; | |||
} | |||
nav#p-navigation div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a:hover, | |||
nav#p-tb div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a:hover { | |||
background-color: #e3d4f3; | |||
color: #5a1d8a; | |||
} | |||
/* Responsive Design */ | |||
@media (max-width: 768px) { | |||
.mw-body { | |||
padding: 15px; | |||
margin: 0; /* Remove margin */ | |||
} | |||
.infobox { | |||
float: none; | |||
margin-left: 0; | |||
width: 100%; | |||
} | |||
nav#p-navigation div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a, | |||
nav#p-tb div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a { | |||
padding: 10px 10px; | |||
} | |||
} | |||
/* Use custom font */ | |||
body { | |||
font-family: 'Open Sans', sans-serif; | |||
margin: 0; /* Remove margin */ | |||
} | |||
/* Use Font Awesome icons */ | |||
.nav-icon { | |||
margin-right: 5px; | |||
} | |||
/* Content Box */ | |||
.content-box { | |||
background-color: #ffffff; | |||
padding: 20px; | |||
margin-bottom: 20px; | |||
border-radius: 8px; | |||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |||
} | |||
/* Footer */ | |||
.footer { | |||
background-color: #522F65; | |||
color: white; | |||
padding: 20px; | |||
text-align: center; | |||
font-size: 14px; | |||
} | |||
/* Header */ | |||
.mw-head { | |||
background-color: #522F65; | |||
color: white; | |||
padding: 15px; | |||
} | |||
.mw-head a { | |||
color: #e3d4f3; | |||
} | |||
.mw-head a:hover { | |||
color: #ffffff; | |||
} | |||
/* Sidebar */ | |||
#mw-panel { | |||
background-color: #f3f0f9; | |||
padding: 10px; | |||
border-radius: 8px; | |||
} | |||
#mw-panel .vector-menu-content-list a { | |||
color: #522F65; | |||
font-weight: bold; | |||
} | |||
#mw-panel .vector-menu-content-list a:hover { | |||
color: #7c25b8; | |||
} | |||
/* Typography */ | |||
body { | |||
font-family: 'Open Sans', sans-serif; | |||
line-height: 1.6; | |||
color: #333; | |||
} | |||
h1, h2, h3, h4, h5, h6 { | |||
font-family: 'Open Sans', sans-serif; | |||
color: #333; | |||
margin-bottom: 15px; | |||
} | |||
p { | |||
margin-bottom: 15px; | |||
} | |||
a { | |||
color: #7c25b8; | |||
text-decoration: none; | |||
} | |||
a:hover { | |||
color: #5a1d8a; | |||
text-decoration: underline; | |||
} | |||
/* Existing styles from user */ | |||
/* change the background color of the navigation menu above the main text of wiki */ | |||
li.mw-list-item { | |||
background-image: none; | |||
} | |||
/* Change the looks of the text on the navigation menu above the main text of wiki */ | /* Change the looks of the text on the navigation menu above the main text of wiki */ | ||
nav#p-namespaces div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a { | nav#p-namespaces div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a { | ||
color: #7c25b8; | |||
} | } | ||
nav#p-views div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a { | nav#p-views div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a { | ||
color: #7c25b8; | |||
} | } | ||
/* Change the looks of the text on sidebar */ | /* Change the looks of the text on sidebar */ | ||
nav#p-navigation div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a { | nav#p-navigation div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a { | ||
font-weight: bold; | |||
color: #7c25b8; | |||
} | } | ||
nav#p-tb div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a { | nav#p-tb div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a { | ||
color: #7c25b8; | |||
} | } | ||
/*No longer use this, we use Extension:MobileDetect instead*/ | |||
/* Important: do not display certain things on Desktop*/ | /* Important: do not display certain things on Desktop*/ | ||
.nodesktop { | .nodesktop { | ||
display: none !important; | |||
} | } | ||
Line 48: | Line 229: | ||
.table.plain > tbody > tr:nth-child(odd), | .table.plain > tbody > tr:nth-child(odd), | ||
.table > tbody > tr.plain:nth-child(odd) { | .table > tbody > tr.plain:nth-child(odd) { | ||
background-color:transparent !important; | background-color: transparent !important; | ||
} | } | ||
/* New background */ | /* New background */ | ||
p.white { | p.white { | ||
color: #FFFFFF; | |||
} | } | ||
/*remove header on Main_Page*/ | /*remove header on Main_Page*/ | ||
body.page-Main_Page.ns-subject h1.firstHeading { | body.page-Main_Page.ns-subject h1.firstHeading { | ||
display: none; | |||
} | } | ||
/** INFOBOXES **/ | /** INFOBOXES **/ | ||
.infobox { | .infobox { | ||
border: 1px solid #020202; | |||
background-color: #f9f9f9; | |||
color: black; | |||
margin-bottom: 0.2em; | |||
margin-left: 1em; | |||
padding: 0.2em; | |||
float: right; | |||
clear: right; | |||
} | } | ||
.infobox td, | .infobox td, | ||
.infobox th { | .infobox th { | ||
vertical-align: top; | |||
} | } | ||
.infobox caption { | .infobox caption { | ||
font-size: larger; | |||
margin-left: inherit; | |||
} | } | ||
.infobox.bordered { | .infobox.bordered { | ||
border-collapse: collapse; | |||
} | } | ||
.infobox.bordered td, | .infobox.bordered td, | ||
.infobox.bordered th { | .infobox.bordered th { | ||
border: 1px solid #020202; | |||
} | } | ||
.infobox.bordered .borderless td, | .infobox.bordered .borderless td, | ||
.infobox.bordered .borderless th { | .infobox.bordered .borderless th { | ||
border: 0; | |||
} | } | ||
/** TABLES **/ | /** TABLES **/ | ||
/* KTV Table */ | /* KTV Table */ | ||
.table.ktv-table > :first-child > tr:first-child, | |||
.table.ktv-table > tbody > tr.heading, | |||
.table.ktv-table > :first-child > tr:first-child > *, | |||
.table.ktv-table > tbody > tr.heading > * { | |||
background-color:#522F65!important; | background-color: #522F65 !important; | ||
border-color:#777d9e!important; | border-color: #777d9e !important; | ||
} | |||
.table.ktv-table > tbody > tr:nth-child(odd), | |||
.table > tbody > tr.ktv-table:nth-child(odd) { | |||
background-color:#dfe1ec; | background-color: #dfe1ec; | ||
} | } | ||
/* Allow limiting of which header levels are shown in a TOC; | |||
<div class="toclimit-3">, for instance, will limit to | |||
showing ==headings== and ===headings=== but no further | |||
(as long as there are no =headings= on the page, which | |||
there shouldn't be according to the MoS). */ | |||
.toclimit-2 .toclevel-1 ul, | |||
.toclimit-3 .toclevel-2 ul, | |||
.toclimit-4 .toclevel-3 ul, | |||
.toclimit-5 .toclevel-4 ul, | |||
.toclimit-6 .toclevel-5 ul, | |||
.toclimit-7 .toclevel-6 ul { | |||
display: none; | |||
} |
Latest revision as of 23:03, 18 August 2024
/* Enhanced styles for a modern look */
/* Headings */
h1, h2, h3, h4, h5, h6 {
font-family: 'Open Sans', sans-serif;
color: #333;
}
/* Links */
a {
color: #7c25b8;
text-decoration: none;
}
a:hover {
color: #5a1d8a;
text-decoration: underline;
}
/* Buttons */
.button, input[type="submit"], input[type="button"] {
background-color: #7c25b8;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
display: inline-block;
text-align: center;
transition: background-color 0.3s, color 0.3s;
}
.button:hover, input[type="submit"]:hover, input[type="button"]:hover {
background-color: #5a1d8a;
}
/* Forms */
input[type="text"], input[type="password"], textarea {
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
}
/* Enhanced Navigation */
nav#p-namespaces div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a,
nav#p-views div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a {
padding: 10px 15px;
display: block;
transition: background-color 0.3s, color 0.3s;
}
nav#p-namespaces div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a:hover,
nav#p-views div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a:hover {
background-color: #e3d4f3;
color: #5a1d8a;
}
/* Sidebar Menu */
nav#p-navigation div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a,
nav#p-tb div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a {
padding: 10px 15px;
display: block;
transition: background-color 0.3s, color 0.3s;
}
nav#p-navigation div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a:hover,
nav#p-tb div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a:hover {
background-color: #e3d4f3;
color: #5a1d8a;
}
/* Responsive Design */
@media (max-width: 768px) {
.mw-body {
padding: 15px;
margin: 0; /* Remove margin */
}
.infobox {
float: none;
margin-left: 0;
width: 100%;
}
nav#p-navigation div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a,
nav#p-tb div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a {
padding: 10px 10px;
}
}
/* Use custom font */
body {
font-family: 'Open Sans', sans-serif;
margin: 0; /* Remove margin */
}
/* Use Font Awesome icons */
.nav-icon {
margin-right: 5px;
}
/* Content Box */
.content-box {
background-color: #ffffff;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Footer */
.footer {
background-color: #522F65;
color: white;
padding: 20px;
text-align: center;
font-size: 14px;
}
/* Header */
.mw-head {
background-color: #522F65;
color: white;
padding: 15px;
}
.mw-head a {
color: #e3d4f3;
}
.mw-head a:hover {
color: #ffffff;
}
/* Sidebar */
#mw-panel {
background-color: #f3f0f9;
padding: 10px;
border-radius: 8px;
}
#mw-panel .vector-menu-content-list a {
color: #522F65;
font-weight: bold;
}
#mw-panel .vector-menu-content-list a:hover {
color: #7c25b8;
}
/* Typography */
body {
font-family: 'Open Sans', sans-serif;
line-height: 1.6;
color: #333;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Open Sans', sans-serif;
color: #333;
margin-bottom: 15px;
}
p {
margin-bottom: 15px;
}
a {
color: #7c25b8;
text-decoration: none;
}
a:hover {
color: #5a1d8a;
text-decoration: underline;
}
/* Existing styles from user */
/* change the background color of the navigation menu above the main text of wiki */
li.mw-list-item {
background-image: none;
}
/* Change the looks of the text on the navigation menu above the main text of wiki */
nav#p-namespaces div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a {
color: #7c25b8;
}
nav#p-views div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a {
color: #7c25b8;
}
/* Change the looks of the text on sidebar */
nav#p-navigation div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a {
font-weight: bold;
color: #7c25b8;
}
nav#p-tb div.vector-menu-content > ul.vector-menu-content-list > li.mw-list-item a {
color: #7c25b8;
}
/*No longer use this, we use Extension:MobileDetect instead*/
/* Important: do not display certain things on Desktop*/
.nodesktop {
display: none !important;
}
/* New background */
.mw-body {
background-color: rgba(255, 255, 255, 0.8);
}
body {
background: url(https://nightlifeasia.wiki/images/wiki_background99_test.jpg);
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-position: top center;
background-size: cover;
background-color: #fcf8fe;
}
#mw-page-base {
background-color: transparent;
background-image: none;
}
.table.plain > tbody > tr:nth-child(odd),
.table > tbody > tr.plain:nth-child(odd) {
background-color: transparent !important;
}
/* New background */
p.white {
color: #FFFFFF;
}
/*remove header on Main_Page*/
body.page-Main_Page.ns-subject h1.firstHeading {
display: none;
}
/** INFOBOXES **/
.infobox {
border: 1px solid #020202;
background-color: #f9f9f9;
color: black;
margin-bottom: 0.2em;
margin-left: 1em;
padding: 0.2em;
float: right;
clear: right;
}
.infobox td,
.infobox th {
vertical-align: top;
}
.infobox caption {
font-size: larger;
margin-left: inherit;
}
.infobox.bordered {
border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #020202;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
border: 0;
}
/** TABLES **/
/* KTV Table */
.table.ktv-table > :first-child > tr:first-child,
.table.ktv-table > tbody > tr.heading,
.table.ktv-table > :first-child > tr:first-child > *,
.table.ktv-table > tbody > tr.heading > * {
background-color: #522F65 !important;
border-color: #777d9e !important;
}
.table.ktv-table > tbody > tr:nth-child(odd),
.table > tbody > tr.ktv-table:nth-child(odd) {
background-color: #dfe1ec;
}
/* Allow limiting of which header levels are shown in a TOC;
<div class="toclimit-3">, for instance, will limit to
showing ==headings== and ===headings=== but no further
(as long as there are no =headings= on the page, which
there shouldn't be according to the MoS). */
.toclimit-2 .toclevel-1 ul,
.toclimit-3 .toclevel-2 ul,
.toclimit-4 .toclevel-3 ul,
.toclimit-5 .toclevel-4 ul,
.toclimit-6 .toclevel-5 ul,
.toclimit-7 .toclevel-6 ul {
display: none;
}