CURRENT MISSION: Update, uncensor and (if needed) rewrite all the imported pages from SNCApedia.
Additionally, please tag all unnecessary discussion pages with the {{Delete}} template, for example those with outdated info.
For the love of god, please only mark your articles with {{WIP}} if you actually intend to finish them. Just look at how many there are in the WIP category.
Tether is currently on a break until the 16th of July. Please contact me for any and all things regarding SECApedia. Soyoyuki (talk) 01:36, 26 June 2026 (UTC)
You may still submit your janitor/approver application, but you wont get anywhere if you arent already autoconfirmed.
The community rules have been slightly updated, with the mention of "No-Link" sites.This is also mentioned & explained in rule 9.2
soygem.party and jarty.party have been moved out of the Gray Area and into the Friendly Zone.
The file size upload limit has FINALLY been increased to 8 megabytes. Sorry saars.
Template:TemplateBase/Country/styles.css: Difference between revisions
imported>SomebodyRum mNo edit summary |
imported>SomebodyRum mNo edit summary |
||
| Line 1: | Line 1: | ||
/* --- 3-COLOR HORIZONTAL LAYOUT (GRID) --- */ | /* --- 3-COLOR HORIZONTAL LAYOUT (GRID) --- */ | ||
/* | /* Applies to standard (1:1:1) and Spanish ratio (1:2:1) */ | ||
.tb-country-container.tb-preset-h.tb-3colors { | .tb-country-container.tb-preset-h.tb-3colors, | ||
.tb-country-container.tb-preset-h-121.tb-3colors { | |||
padding: 0; | padding: 0; | ||
align-items: stretch; | align-items: stretch; | ||
min-height: 110px; | min-height: 110px; | ||
} | } | ||
.tb-preset-h.tb-3colors .tb-country-content { | .tb-preset-h.tb-3colors .tb-country-content, | ||
.tb-preset-h-121.tb-3colors .tb-country-content { | |||
display: grid; | display: grid; | ||
width: 100%; | width: 100%; | ||
grid-template-columns: 100%; | grid-template-columns: 100%; | ||
} | } | ||
.tb-preset-h.tb-3colors .tb-country-title { | /* Grid Track Ratios */ | ||
.tb-preset-h.tb-3colors .tb-country-content { | |||
grid-template-rows: 1fr 1fr 1fr; /* Equal 33% slices */ | |||
} | |||
.tb-preset-h-121.tb-3colors .tb-country-content { | |||
grid-template-rows: 1fr 2fr 1fr; /* 25% / 50% / 25% slices (Double middle) */ | |||
} | |||
/* Shared Grid Placement */ | |||
.tb-preset-h.tb-3colors .tb-country-title, | |||
.tb-preset-h-121.tb-3colors .tb-country-title { | |||
grid-row: 1; | grid-row: 1; | ||
align-self: center; | align-self: center; | ||
| Line 118: | Line 31: | ||
} | } | ||
.tb-preset-h.tb-3colors .tb-country-text { | .tb-preset-h.tb-3colors .tb-country-text, | ||
.tb-preset-h-121.tb-3colors .tb-country-text { | |||
grid-row: 2; | grid-row: 2; | ||
align-self: center; | align-self: center; | ||
| Line 125: | Line 39: | ||
} | } | ||
.tb-preset-h.tb-3colors .tb-country-audio { | .tb-preset-h.tb-3colors .tb-country-audio, | ||
.tb-preset-h-121.tb-3colors .tb-country-audio { | |||
grid-row: 3; | grid-row: 3; | ||
align-self: center; | align-self: center; | ||
Revision as of 11:02, 19 May 2026
/* --- 3-COLOR HORIZONTAL LAYOUT (GRID) --- */
/* Applies to standard (1:1:1) and Spanish ratio (1:2:1) */
.tb-country-container.tb-preset-h.tb-3colors,
.tb-country-container.tb-preset-h-121.tb-3colors {
padding: 0;
align-items: stretch;
min-height: 110px;
}
.tb-preset-h.tb-3colors .tb-country-content,
.tb-preset-h-121.tb-3colors .tb-country-content {
display: grid;
width: 100%;
grid-template-columns: 100%;
}
/* Grid Track Ratios */
.tb-preset-h.tb-3colors .tb-country-content {
grid-template-rows: 1fr 1fr 1fr; /* Equal 33% slices */
}
.tb-preset-h-121.tb-3colors .tb-country-content {
grid-template-rows: 1fr 2fr 1fr; /* 25% / 50% / 25% slices (Double middle) */
}
/* Shared Grid Placement */
.tb-preset-h.tb-3colors .tb-country-title,
.tb-preset-h-121.tb-3colors .tb-country-title {
grid-row: 1;
align-self: center;
justify-self: center;
}
.tb-preset-h.tb-3colors .tb-country-text,
.tb-preset-h-121.tb-3colors .tb-country-text {
grid-row: 2;
align-self: center;
justify-self: center;
margin-top: 0;
}
.tb-preset-h.tb-3colors .tb-country-audio,
.tb-preset-h-121.tb-3colors .tb-country-audio {
grid-row: 3;
align-self: center;
justify-self: center;
margin-top: 0;
}