Jump to content

User:Fen/Portals/Software/styles.css

From Consumer Rights Wiki
Revision as of 04:17, 16 July 2025 by Fen (talk | contribs) (Created page with ".software-portal-wrapper { font-family: "Fira Code", "Courier New", monospace; background: #1a1a1a; color: #ddd; padding: 2em; max-width: 1200px; margin: auto; } Header: dark banner: .software-header { background: #000; color: #fff; border-left: 10px solid #ff3333; padding: 1.5em; border-radius: 4px; margin-bottom: 2em; box-shadow: 0 0 10px rgba(255, 51, 51, 0.2); } .software-title { font-size: 2.2em; font-weight: bold; letter-spacin...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.software-portal-wrapper {
  font-family: "Fira Code", "Courier New", monospace;
  background: #1a1a1a;
  color: #ddd;
  padding: 2em;
  max-width: 1200px;
  margin: auto;
}

/* Header: dark banner */
.software-header {
  background: #000;
  color: #fff;
  border-left: 10px solid #ff3333;
  padding: 1.5em;
  border-radius: 4px;
  margin-bottom: 2em;
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.2);
}
.software-title {
  font-size: 2.2em;
  font-weight: bold;
  letter-spacing: 0.8px;
}
.software-subtitle {
  font-size: 1em;
  color: #ccc;
  font-style: italic;
  margin-top: 0.4em;
}

/* Grid */
.software-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em;
}

/* Card */
.software-card {
  background: #222;
  border: 1px solid #444;
  border-left: 5px solid #ff3333;
  border-radius: 3px;
  padding: 1.3em;
  box-shadow: inset 0 0 0 1px #000;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.software-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.1);
}
.software-card.wide {
  grid-column: 1 / -1;
}

/* Title */
.software-card-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #ff9999;
  margin-bottom: 0.5em;
  border-bottom: 1px dashed #444;
  padding-bottom: 0.2em;
}

/* Body */
.software-card-body {
  font-size: 0.95em;
  line-height: 1.6;
  color: #ccc;
}
.software-card-body ul {
  padding-left: 1.2em;
}
.software-card-body li {
  margin-bottom: 0.4em;
}

/* Centered Image */
.software-card-body.center {
  text-align: center;
}

/* Category links */
.software-card-body a[href*="Category:"] {
  display: inline-block;
  background: #2a2a2a;
  border: 1px solid #444;
  padding: 0.3em 0.6em;
  font-size: 0.9em;
  font-weight: 600;
  color: #ffcccc;
  border-radius: 4px;
  margin: 0.25em;
  text-decoration: none;
}
.software-card-body a[href*="Category:"]:hover {
  background: #3a3a3a;
  color: #fff;
  border-color: #666;
}

/* Link styles */
a:link,
a:visited {
  color: #ff6666;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #ffa0a0;
}