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

Fen (talk | contribs)
No edit summary
Fen (talk | contribs)
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 39: Line 39:
.org-grid {
.org-grid {
   display: grid;
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
   grid-template-columns: 1fr 1fr;
   gap: 1.5em;
   gap: 1.5em;
}
}
Line 105: Line 105:
}
}


.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;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}


.org-card-body a[href*="Category:"]:hover {
@media screen {
   background-color: #d0d5d9;
  html.skin-theme-clientpref-night .org-portal-wrapper,
   color: #000;
  html.skin-theme-clientpref-os .org-portal-wrapper {
    background: linear-gradient(to bottom, #1b1c1e, #111);
    border-top: 8px solid #888;
    color: #e0e0e0;
    box-shadow: 0 0 14px rgba(0,0,0,0.6);
  }
 
  html.skin-theme-clientpref-night .org-header,
  html.skin-theme-clientpref-os .org-header {
    background: linear-gradient(to right, #111, #000);
    color: #fff;
    border-left-color: #ff4c4c;
    border-right-color: #ff4c4c;
  }
  html.skin-theme-clientpref-night .org-title,
  html.skin-theme-clientpref-os .org-title {
    color: #f5f5f5;
  }
  html.skin-theme-clientpref-night .org-subtitle,
  html.skin-theme-clientpref-os .org-subtitle {
    color: #bbbbbb;
  }
 
  html.skin-theme-clientpref-night .org-card,
  html.skin-theme-clientpref-os .org-card {
    background-color: #262729;
    border: 2px solid #555;
    border-left: 8px solid #aaa;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  }
  html.skin-theme-clientpref-night .org-card-title,
  html.skin-theme-clientpref-os .org-card-title {
    color: #ffffff;
    border-bottom-color: #888;
  }
  html.skin-theme-clientpref-night .org-card-body,
  html.skin-theme-clientpref-os .org-card-body {
    color: #dddddd;
  }
 
  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: #66b2ff;
  }
  html.skin-theme-clientpref-night a:hover,
   html.skin-theme-clientpref-os a:hover {
    color: #99ccff;
   }
  html.skin-theme-clientpref-night .org-card-body a,
  html.skin-theme-clientpref-os .org-card-body a {
    font-weight: bold;
    color: #ff9999;
  }
}
}