Toggle menu
7
505
3
1.1K
New York ARTCC
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
Add legacy Citizen CSS variables for SOPHeader template parity
Parity fix: match source wiki Common.css + legacy font-size vars
Line 7: Line 7:


/* - - - - - - - - -
/* - - - - - - - - -
| NYARTCC Customizations
| NYARTCC Customizations
|
|
*/
| */


.phraseology-wrapper {
.phraseology-wrapper {
Line 15: Line 15:
}
}


.phraseology, .phraseology_syntax, .phraseology_example {
.phraseology,
.phraseology_syntax,
.phraseology_example {
     color: #468847;
     color: #468847;
}
}
Line 22: Line 24:
.ny-pull-right { float: right; }
.ny-pull-right { float: right; }


.ny-flex {
.ny-flex { display: flex; flex-wrap: wrap; }
    display: flex;
.ny-flex div { flex-grow: 1; margin: 1em; }
    flex-wrap: wrap;
}
 
.ny-flex div {
    flex-grow: 1;
    margin: 1em;
}


.ny-badge {
.ny-badge {
Line 44: Line 39:
}
}


small { font-style: oblique; }
small {
    font-style: oblique;
}


/* - - - - - - - - -
/* - - - - - - - - -
| List Numbering Styles
| List Numbering Styles
|
|
*/
| */


@counter-style para-lower-alpha {
@counter-style para-lower-alpha {
Line 67: Line 64:
ol li > ol li > ol { list-style-type: para-lower-alpha; }
ol li > ol li > ol { list-style-type: para-lower-alpha; }
ol li > ol li > ol li > ol { list-style-type: para-lower-roman; }
ol li > ol li > ol li > ol { list-style-type: para-lower-roman; }


/* Legacy Citizen CSS variables (needed for SOPHeader template) */
/* Legacy Citizen CSS variables (needed for SOPHeader template) */
:root {
:root {
  --font-size-h1: 2rem;
    --font-size-h1: 2rem;
  --font-size-h2: 1.5rem;
    --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
    --font-size-h3: 1.25rem;
}
}


/* SOPHeader heading text class */
/* SOPHeader heading text class */
.h-text {
.h-text {
  font-weight: 600;
    font-weight: 600;
}
}

Revision as of 01:34, 27 March 2026

/* CSS placed here will be applied to all skins */

[data-event-name="tabs.talk"] { display:none!important; }
.mw-usertoollinks-talk { display:none!important; }
.button.talk { display:none!important; }
li#language-selector { display: none; }

/* - - - - - - - - -
| NYARTCC Customizations
|
| */

.phraseology-wrapper {
    margin: 5px 0;
}

.phraseology,
.phraseology_syntax,
.phraseology_example {
    color: #468847;
}

.ny-pull-left { float: left; }
.ny-pull-right { float: right; }

.ny-flex { display: flex; flex-wrap: wrap; }
.ny-flex div { flex-grow: 1; margin: 1em; }

.ny-badge {
    padding: 0.2em 0.6em 0.3em;
    font-size: 85%;
    font-weight: bold;
    border-radius: 0.25em;
}

.ny-warning {
    background-color: #e99002;
    color: #ffffff;
}

small {
    font-style: oblique;
}

/* - - - - - - - - -
| List Numbering Styles
|
| */

@counter-style para-lower-alpha {
    system: extends lower-alpha;
    prefix: '(';
    suffix: ') ';
}

@counter-style para-lower-roman {
    system: extends lower-roman;
    prefix: '(';
    suffix: ') ';
}

ol { list-style-type: lower-alpha; }
ol li > ol { list-style-type: decimal; }
ol li > ol li > ol { list-style-type: para-lower-alpha; }
ol li > ol li > ol li > ol { list-style-type: para-lower-roman; }

/* Legacy Citizen CSS variables (needed for SOPHeader template) */
:root {
    --font-size-h1: 2rem;
    --font-size-h2: 1.5rem;
    --font-size-h3: 1.25rem;
}

/* SOPHeader heading text class */
.h-text {
    font-weight: 600;
}