User:Fen/Portals/Software/styles.css
Appearance
.software-portal-wrapper {
font-family: "JetBrains Mono", monospace;
background: #0d0d0d;
color: #e0e0e0;
padding: 2em;
max-width: 1200px;
margin: auto;
}
/* Header: dark banner */
.software-header {
background: linear-gradient(to right, #121212, #1e1e1e);
color: #ffffff;
padding: 1.8em;
border-left: 8px solid #00ffff;
border-radius: 8px;
margin-bottom: 2em;
box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
}
.software-title {
font-size: 2.2em;
font-weight: bold;
letter-spacing: 0.8px;
}
.software-subtitle {
font-size: 1em;
font-style: italic;
color: #c0ffff;
margin-top: 0.4em;
}
/* Grid */
.software-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5em;
}
/* Card */
.software-card {
background: #1a1a1a;
border: 1px solid #2a2a2a;
border-left: 5px solid #b380ff;
border-radius: 6px;
padding: 1.2em;
box-shadow: 0 0 8px rgba(179, 128, 255, 0.05);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.software-card:hover {
transform: translateY(-3px);
box-shadow: 0 0 12px rgba(179, 128, 255, 0.15);
}
.software-card.wide {
grid-column: 1 / -1;
}
/* Title */
.software-card-title {
font-size: 1.3em;
font-weight: bold;
color: #b380ff;
margin-bottom: 0.5em;
border-bottom: 1px solid #333;
padding-bottom: 0.2em;
}
/* Body */
.software-card-body {
font-size: 0.97em;
color: #d0d0d0;
line-height: 1.6;
}
.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 tag buttons */
.software-card-body a[href*="Category:"] {
display: inline-block;
background: #262626;
border: 1px solid #3a3a3a;
padding: 0.4em 0.8em;
font-size: 0.9em;
font-weight: 600;
color: #00ffff;
border-radius: 4px;
margin: 0.3em;
text-decoration: none;
transition: background 0.2s ease, border-color 0.2s ease;
}
.software-card-body a[href*="Category:"]:hover {
background: #1e1e1e;
border-color: #00cccc;
}
/* Link styling */
a:link,
a:visited {
color: #33ccff;
text-decoration: none;
}
a:hover {
color: #00ffff;
text-decoration: underline;
}