User:Fen/Portals/Orginizations/styles.css

Revision as of 06:06, 13 July 2025 by Fen (talk | contribs) (Created page with ".org-portal-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5em; padding: 2em; background: #1b1e23; font-family: "Segoe UI", Roboto, sans-serif; color: #e2e2e2; } .org-header { grid-column: 1 / -1; text-align: center; background: linear-gradient(to right, #2b2e34, #1f2125); padding: 2em; border: 2px solid #444; border-radius: 8px; box-shadow: 0 0 15px rgba(0,0,0,0.4); } .org-title { font-size...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.org-portal-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5em;
  padding: 2em;
  background: #1b1e23;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #e2e2e2;
}

.org-header {
  grid-column: 1 / -1;
  text-align: center;
  background: linear-gradient(to right, #2b2e34, #1f2125);
  padding: 2em;
  border: 2px solid #444;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.org-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 5px #888;
}

.org-subtitle {
  font-size: 1.2em;
  color: #aaa;
  margin-top: 0.5em;
}

.org-section {
  background: #25282e;
  border-left: 4px solid #3db8c4;
  padding: 1em;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.org-section.wide {
  grid-column: 1 / -1;
}

.org-section-header {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: 2px solid #3db8c4;
  margin-bottom: 0.5em;
  padding-bottom: 0.2em;
  color: #ffffff;
}

.org-section-body {
  font-size: 0.96em;
  line-height: 1.6;
}

.org-section-body ul {
  list-style-type: square;
  padding-left: 1.2em;
}

.center {
  text-align: center;
}

a:link,
a:visited {
  color: #4ecbe7;
  text-decoration: none;
}
a:hover {
  color: #88ecff;
  text-decoration: underline;
}