Template:SCGE/styles.css: Difference between revisions
Appearance
Content deleted Content added
No edit summary |
No edit summary |
||
| Line 27: | Line 27: | ||
color: #2b2b2b; |
color: #2b2b2b; |
||
font-weight: 600; |
font-weight: 600; |
||
font-family: ' |
font-family: 'Sans-Serif', 'Inter', Arial, sans-serif; |
||
text-decoration: none; |
text-decoration: none; |
||
} |
} |
||
| Line 46: | Line 46: | ||
text-align: center; |
text-align: center; |
||
font-size: 2.2em; |
font-size: 2.2em; |
||
font-family: ' |
font-family: 'Sans-Serif', Georgia, serif; /* title font */ |
||
font-variant: normal; |
font-variant: normal; |
||
margin: 0 0 1em; |
margin: 0 0 1em; |
||
| Line 61: | Line 61: | ||
body { |
body { |
||
font-family: ' |
font-family: 'Sans-Serif', 'Inter', Arial, sans-serif; |
||
color: #222; |
color: #222; |
||
background: #ffffff; |
background: #ffffff; |
||
Revision as of 19:26, 9 April 2026
/* Tabs container */
.tabs ul {
display: flex;
flex-wrap: wrap;
margin: 1em 0 0;
padding: 0;
}
/* Individual tabs */
.tabs li {
list-style: none;
flex: 1;
text-align: center;
border-top: 10px #d0d0d0 solid; /* light grey */
margin: 0 0.4ex;
padding: 0.6em 0;
background: #fafafa;
}
.tabs li:nth-child(even) {
border-top-color: #8c8c8c; /* deeper grey */
}
.tabs li a {
color: #2b2b2b;
font-weight: 600;
font-family: 'Sans-Serif', 'Inter', Arial, sans-serif;
text-decoration: none;
}
/* Active tab states */
.tabs.active-1 li:nth-child(1),
.tabs.active-2 li:nth-child(2),
.tabs.active-3 li:nth-child(3),
.tabs.active-4 li:nth-child(4) {
background: #e6e6e6; /* soft grey highlight */
border-top-color: #4a4a4a;
}
/* Main heading / banner */
.main-heading {
background: #000000; /* black banner */
color: #ffffff; /* white text */
text-align: center;
font-size: 2.2em;
font-family: 'Sans-Serif', Georgia, serif; /* title font */
font-variant: normal;
margin: 0 0 1em;
border: none;
padding: 0.6em;
font-weight: bold;
letter-spacing: 0.5px;
}
.main-heading.grey-variant {
background: #2f2f2f; /* dark grey */
color: #ffffff;
}
body {
font-family: 'Sans-Serif', 'Inter', Arial, sans-serif;
color: #222;
background: #ffffff;
}