TrainStation Wiki
Advertisement
TrainStation Wiki

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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Common.css contrals formatting for all skins. To control formatting for a specific skin, edit:
-- Wikia.css, for Oasis (default skin). Anonymous users see this skin.
-- Monobook.css, for Monobook (white skin). */
 
/* Prevent line breaks in silly places:
   1) Where desired
   2) Links when we don't want them to
   3) Bold "links" to the page itself
   4) Ref tags with group names <ref group="Note"> --> "[Note 1]" */
.nowrap,
.nowraplinks a,
.nowraplinks .selflink,
.references a {
    white-space: nowrap;
}
.nowrap pre {
    white-space: pre;
}
/* But allow wrapping where desired: */
.wrap,
.wraplinks a {
    white-space: normal;
}

.main-left {
    font-size: 200%;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.main-right {
    padding:7px;
    margin-top:10px
}
.main-right-small {
    -webkit-column-span: all;
    column-span: all;
    text-align: center;
    padding: 2px;
    font-size: 18px;
    font-weight: bold;
}
.main-columns {/*Control number of columns on main landing page.*/
    -moz-column-count: 3;
    -ms-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
}
.construction {
    font-size: 125%;
    padding: 2%;
}
.construction-head {
    font-size: 225%;
    font-weight: bold;
    text-align: center;
}

.notice-box {
    width: 90%;
    padding: 10px;
    margin: 0 auto;
}
.header-box {
    width: 100%;
    padding: 10px;
    margin: 0 auto;
}
.editor-box {
    width: 100%;
    padding: 5px;
    margin: 0 auto;
}
.list-box {
    -moz-columns: 3;
    -webkit-columns: 3;
    columns: 3;
    width: 80%;
    padding: 10px;
    margin: 0 auto;
    font-size: 85%;
}

/* .ts-table is TrainStation Wiki's default table class. Every table on the 
site should call this class. Where appropriate, tables may call additional 
classes to add formatting specific to their types. */
.ts-table {
    width: 100%;
}
.ts-table-center {/* For centering an entire table.*/
    margin: 1em auto 1em auto;
}
.ts-table-center th,
.ts-table-center td {
    text-align: center;
}

.ts-table th[scope="row"],
.contract-list th:nth-last-of-type(5),/* Pseudo-class "first-of-type" conflicts with the attribute selector th[scope="row"], since a row header tends to be the only th child of its tr parent. */
.contract-list td:nth-of-type(3) {
    text-align: center;
}
.contract-list th:nth-of-type(5),
.contract-list td:nth-of-type(4) {
    text-align: right;
}

/* The following declarations need to stay at the end of the file to override earlier declarations. */
.ts-table th:only-child {
    -moz-column-span: all;
    column-span: all;
    text-align: left;
    font-weight: normal;
}
.ts-table td:first-child {
    -webkit-column-span: all;
    -moz-column-span: all;
    column-span: all;
}

/* Tabber */

.tabberlive > .tabbertab {
    padding: 5px;
    color: #FFF !important;
    background: #474646 !important;
    border: 1px solid #C6C6C6 !important;
    border-top: 0 !important;
}

.tabberlive > .tabbernav {
    border-bottom: 1px solid #C6C6C6 !important;
}

.tabberlive > .tabbernav > li > a {
    border: 1px solid #A22020 !important;
    border-bottom: none !important;
    background: #5D0909 !important;
    text-decoration: none;
    text-shadow: 0px 0px 2px #FC3E3E;
}

.tabberlive > .tabbernav > li > a:link { color: #FFF !important; }
.tabberlive > .tabbernav > li > a:visited { color: #FFF !important; }

.tabberlive > .tabbernav > li > a:hover {
    color: #FFF !important;
    background: #474646 !important;
    border-color: #C6C6C6 !important;
    border-bottom: 1px solid #474646 !important;
}

.tabberlive > .tabbernav > li.tabberactive > a {
    background-color: #474646 !important;
    border: 1px solid #C6C6C6 !important;
    border-bottom: 1px solid #474646 !important;
}

.tabberlive > .tabbernav > li.tabberactive > a:hover {
    color: #FFF !important;
    background: #474646 !important;
    border-bottom: 1px solid #474646 !important;
}

.tstabber > .tabberlive > .tabbernav {
    font:normal 12px sans-serif;
}

/* Tooltips */

.tt-basic-tooltip {
    color: #FFF;
    background: #474646;
    border: 1px solid #6c6b6b;
}
.tt-advanced-tooltip {
    color: #FFF;
    background: #474646;
    border: 1px solid #6c6b6b;
}
.tt-limit-tooltip {
    color: #FFF;
    background: #474646;
    border: 1px solid #6c6b6b;
}
.tt-income-tooltip {
    color: #FFF;
    background: #474646;
    border: 1px solid #6c6b6b;
}
.tt-info-tooltip {
    color: #FFF;
    background: #474646;
    border: 1px solid #6c6b6b;
    padding: 0px;
}

/* TOC Limit */
.toclimit-2 .toclevel-1 ol,
.toclimit-3 .toclevel-2 ol,
.toclimit-4 .toclevel-3 ol,
.toclimit-5 .toclevel-4 ol,
.toclimit-6 .toclevel-5 ol,
.toclimit-7 .toclevel-6 ol {
    display: none;
}
Advertisement