|
|
| (904 intermediate revisions by 2 users not shown) |
| Line 1: |
Line 1: |
| /* CSS placed here will be applied to all skins */
| | . |
| | |
| /* White background in body */
| |
| @font-face {
| |
| font-family: 'HALColant-TextRegular';
| |
| src: url('/fonts/HALColant-TextRegular.woff2') format('woff2'),
| |
| url('/fonts/HALColant-TextRegular.woff') format('woff');
| |
| font-weight: normal;
| |
| font-style: normal;
| |
| }
| |
| body {
| |
| font-family: 'HALColant-TextRegular', sans-serif;
| |
| background-color: white;
| |
| transition: background-color 1s ease;
| |
| }
| |
| /* Mediawiki search results */
| |
| .mw-search-profile-tabs {
| |
| display: none;
| |
| }
| |
| #mw-searchoptions {
| |
| display: none;
| |
| }
| |
| | |
| /* Mediawiki horizontal navigation styles */
| |
| #mw-head {
| |
| background-color: white;
| |
| transition: background-color 1s ease;
| |
| display: none;
| |
| }
| |
| #mw-page-base {
| |
| background-color: white;
| |
| transition: background-color 1s ease;
| |
| background-image: none;
| |
| }
| |
| #mw-head-base {
| |
| margin-top: -9%;
| |
| margin-left: 0!important;
| |
| }
| |
| .mw-body, #left-navigation, #mw-data-after-content, .mw-footer {
| |
| margin-left: 0!important;
| |
| }
| |
| | |
| .mw-body {
| |
| border: none;
| |
| margin-left: 15px!important;
| |
| }
| |
| #catlinks {
| |
| display: none;
| |
| }
| |
| #p-logo a {
| |
| display: none;
| |
| }
| |
| .mw-footer {
| |
| display: none;
| |
| }
| |
| a.mw-selflink {
| |
| font-weight: normal;
| |
| text-decoration: underline;
| |
| }
| |
| a.mw-selflink:hover {
| |
| font-weight: normal;
| |
| text-decoration: underline;
| |
| }
| |
| /* ------>Start Style for header */
| |
| #header-container {
| |
| display: flex;
| |
| flex-wrap: wrap;
| |
| margin: 0 auto;
| |
| padding-bottom: 12%;
| |
| }
| |
| .head-col {
| |
| width: calc(20% - 2px);
| |
| box-sizing: border-box;
| |
| height: fit-content;
| |
| padding: 0 7px;
| |
| margin-bottom: 30px;
| |
| font-size: 12pt;
| |
| line-height: 25px;
| |
| letter-spacing: 0.4px;
| |
| }
| |
|
| |
| .head-col:not(:first-child) {
| |
| margin-left: -1px;
| |
| | |
| }
| |
| | |
| .head-col:nth-child(5n + 1) {
| |
| margin-left: 0;
| |
| transform: none;
| |
| }
| |
| | |
| .head-col:last-child {
| |
| margin-right: 0;
| |
| }
| |
| .head-col-extend {
| |
| width: calc(40% - 2px);
| |
| box-sizing: border-box;
| |
| height: fit-content;
| |
| margin-bottom: 30px;
| |
| font-size: 12pt;
| |
| line-height: 25px;
| |
| letter-spacing: 0.4px;
| |
| border-bottom: 1px solid black;
| |
| }
| |
| .head-box {
| |
| border: 1px solid black;
| |
| }
| |