User:Fen/Portals/UserGuides/styles.css: Difference between revisions

Fen (talk | contribs)
I think it looks better with a bit of green
Fen (talk | contribs)
dark theme
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
.guides-portal-wrapper {
.guides-portal-wrapper {
   font-family: "Segoe UI", "Roboto", sans-serif;
   font-family: "Segoe UI", "Roboto", sans-serif;
   background: #f9fbfc;
   background: #fff6fa;
   color: #1b1f23;
   color: #2a0017;
   padding: 2em;
   padding: 2em;
   max-width: 1200px;
   max-width: 1200px;
Line 10: Line 10:
/* Header */
/* Header */
.guides-header {
.guides-header {
   background: linear-gradient(to right, #2a70b8, #2a9b6e);
   background: linear-gradient(to right, #e75480, #d94f75);
   color: #ffffff;
   color: #ffffff;
   padding: 1.6em;
   padding: 1.6em;
   border-radius: 6px;
   border-radius: 6px;
   margin-bottom: 2em;
   margin-bottom: 2em;
   box-shadow: 0 0 12px rgba(42, 112, 184, 0.3);
   box-shadow: 0 0 12px rgba(233, 92, 139, 0.3);
}
}
.guides-title {
.guides-title {
Line 25: Line 25:
   font-style: italic;
   font-style: italic;
   margin-top: 0.3em;
   margin-top: 0.3em;
   color: #eaf4ff;
   color: #ffebf2;
}
}


Line 38: Line 38:
.guides-card {
.guides-card {
   background: #ffffff;
   background: #ffffff;
   border: 1px solid #dde6f0;
   border: 1px solid #f6dce7;
   border-left: 6px solid #3c9ef0;
   border-left: 6px solid #d94f75;
   border-radius: 5px;
   border-radius: 5px;
   padding: 1.3em;
   padding: 1.3em;
   box-shadow: 0 2px 4px rgba(0,0,0,0.04);
   box-shadow: 0 2px 4px rgba(0,0,0,0.04);
   transition: box-shadow 0.2s ease, transform 0.2s ease;
   transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.guides-card:nth-child(even) {
  border-left-color: #34b76c; /* alternate green */
}
}
.guides-card:hover {
.guides-card:hover {
   transform: translateY(-2px);
   transform: translateY(-2px);
   box-shadow: 0 4px 10px rgba(0,0,0,0.05);
   box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
}
.guides-card.wide {
.guides-card.wide {
Line 60: Line 57:
   font-size: 1.3em;
   font-size: 1.3em;
   font-weight: bold;
   font-weight: bold;
   color: #2560a8;
   color: #a63a5e;
   margin-bottom: 0.4em;
   margin-bottom: 0.4em;
   border-bottom: 1px solid #e0e0e0;
   border-bottom: 1px solid #f0cbd8;
   padding-bottom: 0.3em;
   padding-bottom: 0.3em;
}
}
Line 87: Line 84:
.guides-card-body a[href*="Category:"] {
.guides-card-body a[href*="Category:"] {
   display: inline-block;
   display: inline-block;
   background: #eef5fb;
   background: #fbe7f0;
   border: 1px solid #c8ddee;
   border: 1px solid #f2c6dc;
   padding: 0.3em 0.7em;
   padding: 0.3em 0.7em;
   font-size: 0.9em;
   font-size: 0.9em;
   font-weight: 600;
   font-weight: 600;
   color: #2560a8;
   color: #d94f75;
   border-radius: 6px;
   border-radius: 6px;
   margin: 0.2em;
   margin: 0.2em;
Line 98: Line 95:
}
}
.guides-card-body a[href*="Category:"]:hover {
.guides-card-body a[href*="Category:"]:hover {
   background: #dceeff;
   background: #f9d5e8;
   color: #0f3c6c;
   color: #a63a5e;
}
}


Line 105: Line 102:
a:link,
a:link,
a:visited {
a:visited {
   color: #2c6fcf;
   color: #c72d65;
   text-decoration: none;
   text-decoration: none;
}
}
a:hover {
a:hover {
   color: #0b3ea1;
   color: #8c1e46;
   text-decoration: underline;
   text-decoration: underline;
}
.org-card-body a[href*="Category:"] {
  display: inline-block;
  background-color: #eef0f2;
  border: 1px solid #bbb;
  padding: 0.3em 0.6em;
  margin: 0.2em;
  font-weight: bold;
  text-decoration: none;
  color: #222;
    font-size: 0.8em;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.org-card-body a[href*="Category:"]:hover {
  background-color: #d0d5d9;
  color: #000;
}
@media screen {
  html.skin-theme-clientpref-night .guides-portal-wrapper,
  html.skin-theme-clientpref-os .guides-portal-wrapper {
    background: #1a0f14;
    color: #ffe6f1;
  }
  html.skin-theme-clientpref-night .guides-header,
  html.skin-theme-clientpref-os .guides-header {
    background: linear-gradient(to right, #a8325a, #912a4d);
    color: #fff0f6;
    box-shadow: 0 0 12px rgba(168, 50, 90, 0.4);
  }
  html.skin-theme-clientpref-night .guides-card,
  html.skin-theme-clientpref-os .guides-card {
    background: #24161c;
    border: 1px solid #3a1f2a;
    border-left: 6px solid #b3456a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  }
  html.skin-theme-clientpref-night .guides-card-title,
  html.skin-theme-clientpref-os .guides-card-title {
    color: #ff99b9;
    border-bottom-color: #663546;
  }
  html.skin-theme-clientpref-night .guides-card-body,
  html.skin-theme-clientpref-os .guides-card-body {
    color: #ffd9e6;
  }
  html.skin-theme-clientpref-night .guides-card-body a[href*="Category:"],
  html.skin-theme-clientpref-os .guides-card-body a[href*="Category:"] {
    background: #3a1f2a;
    border: 1px solid #663546;
    color: #ffb3c9;
  }
  html.skin-theme-clientpref-night .guides-card-body a[href*="Category:"]:hover,
  html.skin-theme-clientpref-os .guides-card-body a[href*="Category:"]:hover {
    background: #4d2a37;
    color: #ffccdc;
  }
  html.skin-theme-clientpref-night a:link,
  html.skin-theme-clientpref-night a:visited,
  html.skin-theme-clientpref-os a:link,
  html.skin-theme-clientpref-os a:visited {
    color: #ff99b9;
  }
  html.skin-theme-clientpref-night a:hover,
  html.skin-theme-clientpref-os a:hover {
    color: #ffccd9;
  }
  html.skin-theme-clientpref-night .org-card-body a[href*="Category:"],
  html.skin-theme-clientpref-os .org-card-body a[href*="Category:"] {
    background-color: #2e2e2e;
    border: 1px solid #555;
    color: #ddd;
  }
  html.skin-theme-clientpref-night .org-card-body a[href*="Category:"]:hover,
  html.skin-theme-clientpref-os .org-card-body a[href*="Category:"]:hover {
    background-color: #444;
    color: #fff;
  }
}
}