MediaWiki:Common.css
From Obsidian Scheduler
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */
/*
body {
font-family: Helvetica, Arial, sans-serif;
}
*/
th:first-child {
-moz-border-radius: 3px 0 0 0;
-webkit-border-radius: 3px 0 0 0;
border-radius: 3px 0 0 0;
}
th:last-child {
-moz-border-radius: 0 3px 0 0;
-webkit-border-radius: 0 3px 0 0;
border-radius: 0 3px 0 0;
}
th:only-child{
-moz-border-radius: 3px 3px 0 0;
-webkit-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
}
.leftAlignTable th, .leftAlignTable td {
text-align:left;
padding: 2px 4px;
}
pre, code {
font-family: "Courier New",Courier,monospace;
font-size: 12px;
}
code {
padding: 1px 2px;
border: 1px solid #BBB;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
pre {
border: 1px solid #BBB;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
#p-cactions li, #p-cactions li a {
-webkit-border-top-left-radius: 3px;
-webkit-border-top-right-radius: 3px;
-moz-border-radius-topleft: 3px;
-moz-border-radius-topright: 3px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
#content, .toc, .mw-search-formheader {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
#p-navigation .pBody, #p-search .pBody, #p-tb .pBody {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
select, textarea, input[type="text"], input[type="password"], input[type="email"], input[type="search"] {
border: 1px solid #BBB;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
outline: 0;
-webkit-appearance: none;
padding: 2px 5px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}