MediaWiki:Mobile.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 50: | Line 50: | ||
/* TABLES */ | /* TABLES */ | ||
table { | table { | ||
font-family: | font-family: 'Raleway', sans-serif; | ||
border-collapse: collapse; | border-collapse: collapse; | ||
width:40em; | width:40em; | ||
| Line 87: | Line 87: | ||
display: table; | display: table; | ||
table-layout: fixed; | table-layout: fixed; | ||
} | |||
.wikitable > tr > th, .wikitable > * > tr > th, .toc, .toccolours { | |||
background-color: #FEEBB3; | |||
} | |||
body.page-Main_Page table { | |||
margin: auto!important; | |||
margin-top: 10px!important; | |||
margin-bottom: 10px!important; | |||
} | |||
body.page-Main_Page h2 { | |||
text-align: center; | |||
font-family: "Desmon",Sans-serif; | |||
} | |||
body.page-Main_Page #content { | |||
padding-right: 1.5em; | |||
} | |||
.mw-body h1, mw-body-content h1 { | |||
font-family: "Cinzel Decorative Bold",Sans-serif; | |||
font-size: 45px; | |||
font-weight: 900; | |||
} | |||
.wikitable > caption { | |||
font-family: "Cinzel Decorative Bold",Sans-serif; | |||
font-weight: 900; | |||
font-size: 20px; | |||
letter-spacing: 5px; | |||
} | |||
h2.pi-title { | |||
font-family: "Desmon",Sans-serif; | |||
font-size: 28px; | |||
font-weight: 600; | |||
letter-spacing: 4px; | |||
} | } | ||
Revision as of 12:19, 16 December 2023
/* All CSS here will be loaded for users of the mobile site */
/* Import fonts */
@import url('https://fonts.cdnfonts.com/css/raleway-5');
@font-face {
font-family: 'Desmon';
src: url('/images/1/17/Desmon.ttf') format('truetype');
}
@font-face {
font-family: 'Cinzel Decorative Bold';
src: url('/images/6/64/CinzelDecorative-Bold.ttf') format('truetype');
}
body {
background-color: white;
font-family: 'Raleway', sans-serif;
}
h1, h2, h3, h4, h5 {
color: #174345;
}
a, a:visited, .toctogglelabel {
color: #29878C!important;
}
a.new, .vector-menu-tabs-legacy .new a, .vector-menu-tabs-legacy .new a:visited {
color: #FC6543;
}
*:focus-visible {
outline: 1px solid #174345;
}
/*Take off "Main Page" from the home page */
body.page-Main_Page h1 { display: none; }
body {
background: url("/images/TexturedBackground.jpg");
background-size: cover;
background-attachment: fixed;
}
h2.section-heading div.mw-ui-icon-small {
margin-left: 5px;
}
/* TABLES */
table {
font-family: 'Raleway', sans-serif;
border-collapse: collapse;
width:40em;
max-width:40em;
}
th{
background-color: #059862;
}
td, th {
border: 1px solid #ddd;
padding: 8px;
}
tr:nth-child(even){background-color: #f2f2f2;}
tr:hover {background-color: #ddd;}
th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
}
.wikitable > * > tr > td:has(img) {
padding: 0;
}
.wikitable > * > tr > td img {
height: auto;
max-width: 100%
}
table.wikitable:has(img) {
display: table;
table-layout: fixed;
}
.wikitable > tr > th, .wikitable > * > tr > th, .toc, .toccolours {
background-color: #FEEBB3;
}
body.page-Main_Page table {
margin: auto!important;
margin-top: 10px!important;
margin-bottom: 10px!important;
}
body.page-Main_Page h2 {
text-align: center;
font-family: "Desmon",Sans-serif;
}
body.page-Main_Page #content {
padding-right: 1.5em;
}
.mw-body h1, mw-body-content h1 {
font-family: "Cinzel Decorative Bold",Sans-serif;
font-size: 45px;
font-weight: 900;
}
.wikitable > caption {
font-family: "Cinzel Decorative Bold",Sans-serif;
font-weight: 900;
font-size: 20px;
letter-spacing: 5px;
}
h2.pi-title {
font-family: "Desmon",Sans-serif;
font-size: 28px;
font-weight: 600;
letter-spacing: 4px;
}