MediaWiki:Timeless.css: Difference between revisions

From Progressbar95 Wiki
Content deleted Content added
Timeless custom theme
 
m i caca
 
(9 intermediate revisions by 3 users not shown)
Line 3: Line 3:


:root {
:root {
--alt-color: #4672aa;
--primary-color: #27548d;
--accent-color: #27548d;
--primary-alt-color: #4672aa;
--primary-gray-color: #707180;
--surface-color: #fffd;
--text-color: #000;
}
}


body {
body {
background: var(--alt-color);
background: var(--primary-alt-color);
color: var(--text-color);
}
}


#mw-content-container {
#mw-content-container {
background: url('/resources/assets/background.jpg');
background: url("https://static.miraheze.org/progressbar95wiki/6/64/Progressbar_XB_Wallpaper_6_PC.jpeg");
border-bottom: solid 4px var(--accent-color);
border-bottom: solid 4px var(--primary-color);
background-repeat: no-repeat;
background-repeat: no-repeat;
background-attachment: fixed;
background-attachment: fixed;
background-size: cover;
background-size: cover;
image-rendering: pixelated;

}
}


h1.firstHeading {
h1.firstHeading {
border-bottom-color: var(--accent-color) !important;
border-bottom-color: var(--primary-color) !important;
}
}

.tools-inline li.selected {
.tools-inline li.selected {
border-bottom-color: var(--accent-color);
border-bottom-color: var(--primary-color);
}
}

a {
a, a:visited {
color: var(--accent-color);
color: var(--primary-color);
}
}


a:visited {
color: var(--accent-color);
}
.sidebar-chunk {
.sidebar-chunk {
background: #f8f8f8aa !important;
background: var(--surface-color) !important;
backdrop-filter: blur(15px);
backdrop-filter: blur(15px);
border: solid #fff4 !important;
/* dark mode:
background: #0d0d0daa !important;
*/
border-color: #0000 !important;
}
}


.sidebar-chunk h3 {
.sidebar-chunk h3 {
border-bottom: solid 2px #fff4 !important;
border-bottom-color: var(--primary-alt-color) !important;
}
}


#mw-content {
#mw-content {
background: #fffd;
background: var(--surface-color);
backdrop-filter: blur(25px);
/* dark mode:
border: solid #fff4 !important;
background: #000d;
*/
backdrop-filter: blur(25px);
}
}



#mw-header-container {
#mw-header-container {
background: var(--alt-color) !important;
background: var(--primary-alt-color) !important;
color: white;
color: white;
/* dark mode:
color: white;
*/
}
}


.wordmark img {
.wordmark img {
filter: invert(1) hue-rotate(180deg)
filter: invert(1) hue-rotate(180deg);
/* comment the above if --primary-alt-color is light */
/* dark mode:
width: 138px;
filter: invert(1) hue-rotate(180deg)
height:24px;
*/
}
}


.color-middle, .color-left, .color-right {
.color-middle, .color-left, .color-right {
background: var(--accent-color);
background: var(--primary-color);
}
}


.mw-footer-container {
.mw-footer-container {
border-top: solid 1px rgba(0,0,0,0.1)
border-top: solid 1px #00000019;
}
}


#p-personal-label {
#p-personal-label {
color:black;
color: black;
}
}

Latest revision as of 22:25, 4 November 2023

/* All CSS here will be loaded for users of the Timeless skin */
/* "Progressbar95" Theme */

:root {
  --primary-color: #27548d;
  --primary-alt-color: #4672aa;
  --primary-gray-color: #707180;
  --surface-color: #fffd;
  --text-color: #000;
}

body {
  background: var(--primary-alt-color);
  color: var(--text-color);
}

#mw-content-container {
  background: url("https://static.miraheze.org/progressbar95wiki/6/64/Progressbar_XB_Wallpaper_6_PC.jpeg");
  border-bottom: solid 4px var(--primary-color);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  image-rendering: pixelated;
}

h1.firstHeading {
  border-bottom-color: var(--primary-color) !important;
}

.tools-inline li.selected {
  border-bottom-color: var(--primary-color);
}

a, a:visited {
  color: var(--primary-color);
}

.sidebar-chunk {
  background: var(--surface-color) !important;
  backdrop-filter: blur(15px);
  border: solid #fff4 !important;
}

.sidebar-chunk h3 {
  border-bottom-color: var(--primary-alt-color) !important;
}

#mw-content {
  background: var(--surface-color);
  backdrop-filter: blur(25px);
  border: solid #fff4 !important;
}

#mw-header-container {
  background: var(--primary-alt-color) !important;
  color: white;
}

.wordmark img {
filter: invert(1) hue-rotate(180deg);
/* comment the above if --primary-alt-color is light */
width: 138px;
height:24px;
}

.color-middle, .color-left, .color-right {
  background: var(--primary-color);
}

.mw-footer-container {
  border-top: solid 1px #00000019;
}

#p-personal-label {
  color: black;
}