MediaWiki:Pivot.css: Difference between revisions
No edit summary |
No edit summary |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* Custom colors - top bar*/ | /* Custom colors - top bar*/ | ||
.tab-bar { | .tab-bar { | ||
background: linear-gradient(270deg, rgb(47 59 87) 0%, rgb(38 42 54) 80%); | |||
background: linear-gradient( | |||
} | } | ||
Line 15: | Line 14: | ||
/* sidebar background color */ | /* sidebar background color */ | ||
body { | body { | ||
background-color: # | background-color: #252a36; | ||
} | } | ||
body { | body { | ||
background: # | background: #262a36; | ||
color: # | color: #ffffff; | ||
cursor: auto; | cursor: auto; | ||
font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; | font-family: "Helvetica Neue",Helvetica,Roboto,Arial,sans-serif; | ||
font-style: normal; | font-style: normal; | ||
font-weight: normal; | font-weight: normal; | ||
Line 28: | Line 27: | ||
margin: 0; | margin: 0; | ||
padding: 0; | padding: 0; | ||
position: relative | position: relative | ||
} | } | ||
Line 38: | Line 37: | ||
border-left: 1px solid #ccc; | border-left: 1px solid #ccc; | ||
border-right: 1px solid #ccc; | border-right: 1px solid #ccc; | ||
} | } | ||
Line 54: | Line 45: | ||
margin-bottom: 1.25rem; | margin-bottom: 1.25rem; | ||
table-layout: auto; | table-layout: auto; | ||
} | |||
table tr th,table tr td { | |||
color: #ffffff; | |||
font-size: 0.875rem; | |||
padding: 0.5625rem 0.625rem; | |||
text-align: left | |||
} | |||
table tr.even,table tr.alt,table tr:nth-of-type(even) { | |||
background: #262a36 | |||
} | |||
/* Footer */ | |||
footer.row { | |||
border-top: 1px solid #000000; | |||
padding-bottom: 2em; | |||
color: #fcf9f9; | |||
max-width: 100%; | |||
background-color: #171b24; | |||
} | |||
.side-nav li a:not(.button) { | |||
padding: 0 0 0 .5em; | |||
color: #ffffff; | |||
} | |||
.side-nav li a:not(.button):hover,.side-nav li a:not(.button):focus { | |||
background: transparent; | |||
color: #ccccff | |||
} | |||
h1,h2,h3,h4,h5,h6 { | |||
color: #ffca00; | |||
font-family: "Helvetica Neue",Helvetica,Roboto,Arial,sans-serif; | |||
font-style: normal; | |||
font-weight: normal; | |||
line-height: 1.4; | |||
margin-bottom: 0.5rem; | |||
margin-top: 0.2rem; | |||
text-rendering: optimizeLegibility; | |||
} | |||
h1 small,h2 small,h3 small,h4 small,h5 small,h6 small { | |||
color: #ffca00; | |||
font-size: 60%; | |||
line-height: 0 | |||
} | |||
/* Hyperlinks */ | |||
a { | |||
text-decoration: underline; | |||
color: #00c2ff; | |||
background: none; | |||
} | |||
a:hover { | |||
color: #5fdfff; | |||
text-decoration: underline | |||
} | } |
Latest revision as of 05:29, 11 September 2024
/* Custom colors - top bar*/ .tab-bar { background: linear-gradient(270deg, rgb(47 59 87) 0%, rgb(38 42 54) 80%); } /* style the labels */ ul.side-nav label { background: #252a36; background: linear-gradient(90deg, rgba(255, 207, 0, 1) 0%, rgba(255, 174, 0, 1) 100%); color: #fff; padding: .25em .5em; } /* sidebar background color */ body { background-color: #252a36; } body { background: #262a36; color: #ffffff; cursor: auto; font-family: "Helvetica Neue",Helvetica,Roboto,Arial,sans-serif; font-style: normal; font-weight: normal; line-height: 1.5; margin: 0; padding: 0; position: relative } /* controls the main body area styling */ #p-cactions { padding-top: 1.5em; padding-bottom: .5em; background-color: #171b24; border-left: 1px solid #ccc; border-right: 1px solid #ccc; } /* Table Background */ table { background: #252a36; border: solid 1px #DDDDDD; margin-bottom: 1.25rem; table-layout: auto; } table tr th,table tr td { color: #ffffff; font-size: 0.875rem; padding: 0.5625rem 0.625rem; text-align: left } table tr.even,table tr.alt,table tr:nth-of-type(even) { background: #262a36 } /* Footer */ footer.row { border-top: 1px solid #000000; padding-bottom: 2em; color: #fcf9f9; max-width: 100%; background-color: #171b24; } .side-nav li a:not(.button) { padding: 0 0 0 .5em; color: #ffffff; } .side-nav li a:not(.button):hover,.side-nav li a:not(.button):focus { background: transparent; color: #ccccff } h1,h2,h3,h4,h5,h6 { color: #ffca00; font-family: "Helvetica Neue",Helvetica,Roboto,Arial,sans-serif; font-style: normal; font-weight: normal; line-height: 1.4; margin-bottom: 0.5rem; margin-top: 0.2rem; text-rendering: optimizeLegibility; } h1 small,h2 small,h3 small,h4 small,h5 small,h6 small { color: #ffca00; font-size: 60%; line-height: 0 } /* Hyperlinks */ a { text-decoration: underline; color: #00c2ff; background: none; } a:hover { color: #5fdfff; text-decoration: underline }