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

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..."
 
Fen (talk | contribs)
No edit summary
Line 1: Line 1:
.org-portal-container {
.org-portal-wrapper {
   display: grid;
   background: #f4f4f4;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5em;
   padding: 2em;
   padding: 2em;
  background: #1b1e23;
   font-family: "Segoe UI", sans-serif;
   font-family: "Segoe UI", Roboto, sans-serif;
   color: #222;
   color: #e2e2e2;
  border: 1px solid #ccc;
  border-radius: 8px;
}
}


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


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


.org-subtitle {
.org-subtitle {
   font-size: 1.2em;
   font-size: 1.1em;
  color: #aaa;
   margin-top: 0.5em;
   margin-top: 0.5em;
  color: #ccc;
}
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5em;
}
}


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


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


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


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


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


Line 69: Line 75:
a:link,
a:link,
a:visited {
a:visited {
   color: #4ecbe7;
   color: #3366cc;
   text-decoration: none;
   text-decoration: none;
}
}
a:hover {
a:hover {
  color: #88ecff;
   text-decoration: underline;
   text-decoration: underline;
  color: #224499;
}
}