MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
(Created page with "→‎All CSS here will be loaded for users of the Citizen skin: .terminal-macos .term-bar { text-align: left; width: 50%; height: 25px; background-color: #DAD9D9; margin: 0 auto; font-family: monospace; padding: 0 0 0 0; border-top-left-radius: 5px; border-top-right-radius: 5px; } .terminal-macos .term-red { background-color: #E94B35; border-radius: 100%; width: 13px; height: 13px; margin: 5px 0px 5px 10px; dis...")
 
No edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the Citizen skin */
/* All CSS here will be loaded for users of the Citizen skin */
.terminal-macos .term-bar {
.terminal-macos .term-bar {
     text-align: left;
     text-align: left;
Line 6: Line 5:
     height: 25px;
     height: 25px;
     background-color: #DAD9D9;
     background-color: #DAD9D9;
     margin: 0 auto;
     margin: 0 0;
     font-family: monospace;
     font-family: monospace;
     padding: 0 0 0 0;
     padding: 0 0 0 0;
Line 25: Line 24:
     width: 13px;
     width: 13px;
     height: 13px;
     height: 13px;
     margin: 5px 0px;
     margin: 5px 0px 5px 5px;
     display: inline-block
     display: inline-block
}
}
Line 33: Line 32:
     width: 13px;
     width: 13px;
     height: 13px;
     height: 13px;
     margin: 5px 0px;
     margin: 5px 0px 5px 5px;
     display: inline-block
     display: inline-block
}
}
Line 41: Line 40:
     border-bottom-left-radius: 5px;
     border-bottom-left-radius: 5px;
     border-bottom-right-radius: 5px;
     border-bottom-right-radius: 5px;
     margin: 0 auto;
     margin: 0 0;
     padding: 1px;
     padding: 1px;
}
}

Revision as of 04:16, 7 October 2023

/* All CSS here will be loaded for users of the Citizen skin */
.terminal-macos .term-bar {
    text-align: left;
    width: 50%;
    height: 25px;
    background-color: #DAD9D9;
    margin: 0 0;
    font-family: monospace;
    padding: 0 0 0 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.terminal-macos .term-red {
    background-color: #E94B35;
    border-radius: 100%;
    width: 13px;
    height: 13px;
    margin: 5px 0px 5px 10px;
    display: inline-block
}
.terminal-macos .term-yellow {
    background-color: #f0f000;
    border-radius: 100%;
    width: 13px;
    height: 13px;
    margin: 5px 0px 5px 5px;
    display: inline-block
}
.terminal-macos .term-green {
    background-color: #1AAF5C;
    border-radius: 100%;
    width: 13px;
    height: 13px;
    margin: 5px 0px 5px 5px;
    display: inline-block
}
.terminal-macos .term-screen {
    background-color: #99999930;
    width: 50%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: 0 0;
    padding: 1px;
}
.terminal-macos .term-screen .term-commands {
  padding:0px 0px 40px 10px;
}
.terminal-macos .term-command {
    color: #444;
    font-family: monospace;
    font-size: 15px;
    text-align: left;
    position: static;
}
.terminal-macos p.term-command::before {
    content: 'dev@mbp:~$ ';
    color: #444444aa;
}