Difference between revisions of "MediaWiki talk:Common.css"
From Project: Gorgon Wiki
(Created page with "What is this?") |
m (→KBD) |
||
| (7 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | {{Talk header|the master style-sheet for everything on the wiki}} | |
| + | {{Ambox | ||
| + | |type=Send me a message | ||
| + | |info=(My profile's talk page, or via the forums) if you want something added to it. [[User:BetaNotus|BetaNotus]] ([[User talk:BetaNotus|talk]]) 11:26, 23 January 2015 (CST) | ||
| + | }} | ||
| + | == Documentation CSS == | ||
| + | |||
| + | Could someone add the following to this stylesheet? | ||
| + | <pre> | ||
| + | /* Documentation template */ | ||
| + | .template-documentation .color1 { | ||
| + | background-color: #36C; | ||
| + | color: white; | ||
| + | }</pre> | ||
| + | It will make the header and footer of the documentation look better when a template uses the {{t|documentation}} template.<br/> | ||
| + | --[[User:Trimoon|Trimoon]] ([[User talk:Trimoon|talk]]) 13:20, 9 April 2016 (CDT) | ||
| + | : Added it. [[User:BetaNotus|BetaNotus]] ([[User talk:BetaNotus|talk]]) 10:31, 10 April 2016 (CDT) | ||
| + | |||
| + | :This CSS will make it look even better with the links also white-colored. | ||
| + | <pre>.template-documentation .color1, | ||
| + | #bodyContent .template-documentation .color1 a, | ||
| + | #bodyContent .template-documentation .color1 a.external | ||
| + | { | ||
| + | background-color:#36C; | ||
| + | color:white; | ||
| + | }</pre> | ||
| + | :--[[User:Trimoon|Trimoon]] ([[User talk:Trimoon|talk]]) 07:33, 10 April 2016 (CDT) | ||
| + | :: Added it. [[User:BetaNotus|BetaNotus]] ([[User talk:BetaNotus|talk]]) 10:31, 10 April 2016 (CDT) | ||
| + | |||
| + | == KBD == | ||
| + | |||
| + | BetaNotus - Could you add the below CSS, it will make keyboard input stand out better visually.<br/> | ||
| + | For example see the keys in the tables under [[General_gameplay_tips/Basics#Controls]]. | ||
| + | <code lang="css"><pre> | ||
| + | kbd { | ||
| + | border: 2px solid gray; | ||
| + | color: white; | ||
| + | border-radius: .5em; | ||
| + | background-color: black; | ||
| + | padding: 2px; | ||
| + | } | ||
| + | </pre></code> | ||
| + | --[[User:Trimoon|Trimoon]] ([[User talk:Trimoon|talk]]) 06:50, 21 April 2016 (CDT) | ||
| + | : Added it. Looks great. [[User:BetaNotus|BetaNotus]] ([[User talk:BetaNotus|talk]]) 12:04, 21 April 2016 (CDT) | ||
Latest revision as of 08:52, 8 July 2021
|
This is the talk page for discussing the master style-sheet for everything on the wiki. | |
|---|---|
|
|
| Send me a message |
Documentation CSS
Could someone add the following to this stylesheet?
/* Documentation template */
.template-documentation .color1 {
background-color: #36C;
color: white;
}
It will make the header and footer of the documentation look better when a template uses the {{documentation}} template.
--Trimoon (talk) 13:20, 9 April 2016 (CDT)
- This CSS will make it look even better with the links also white-colored.
.template-documentation .color1,
#bodyContent .template-documentation .color1 a,
#bodyContent .template-documentation .color1 a.external
{
background-color:#36C;
color:white;
}
KBD
BetaNotus - Could you add the below CSS, it will make keyboard input stand out better visually.
For example see the keys in the tables under General_gameplay_tips/Basics#Controls.
kbd {
border: 2px solid gray;
color: white;
border-radius: .5em;
background-color: black;
padding: 2px;
}