Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Task:Place/styles.css: Difference between revisions

From Rothwell Wiki
Content deleted Content added
No edit summary
No edit summary
 
Line 1:
.citizen-table-wrapper table {
color: black;
}
 
html.skin-citizentheme-darkclientpref-night .citizen-table-wrapper table {
color: white;
}
 
@media (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .citizen-table-wrapper table {
color: white;
}
}
 
.task_done {
background: #12f39c;
}
 
html.skin-citizentheme-darkclientpref-night .task_done {
background: #05482e;
}
 
@media (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .task_done {
background: #482e0505482e;
}
}
 
.in_progress {
background: #f39c12;
}
 
html.skin-citizentheme-darkclientpref-night .in_progress {
background: #451612482e05;
}
html.skin-citizen-dark .in_progress {
background:#482e05;
 
@media (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .in_progress {
background: #482e05;
}
}
 
.not_started {
background: #e74c3c;
}
 
html.skin-citizentheme-darkclientpref-night .not_started {
background: #451612;
}
html.skin-citizen-dark .not_started {
background:#451612;
 
@media (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .not_started {
background: #451612;
}
}

Latest revision as of 14:18, 17 June 2024

.citizen-table-wrapper table {
  color: black;
}

html.skin-theme-clientpref-night .citizen-table-wrapper table {
  color: white;
}

@media (prefers-color-scheme: dark) {
  html.skin-theme-clientpref-os .citizen-table-wrapper table {
    color: white;
  }
}

.task_done {
  background: #12f39c;
}

html.skin-theme-clientpref-night .task_done {
  background: #05482e;
}

@media (prefers-color-scheme: dark) {
  html.skin-theme-clientpref-os .task_done {
    background: #05482e;
  }
}

.in_progress {
  background: #f39c12;
}

html.skin-theme-clientpref-night .in_progress {
  background: #482e05;
}

@media (prefers-color-scheme: dark) {
  html.skin-theme-clientpref-os .in_progress {
    background: #482e05;
  }
}

.not_started {
  background: #e74c3c;
}

html.skin-theme-clientpref-night .not_started {
  background: #451612;
}

@media (prefers-color-scheme: dark) {
  html.skin-theme-clientpref-os .not_started {
    background: #451612;
  }
}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.