Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:HomePage/styles.css: Difference between revisions

Template page
Meepl changed the content model of the page Template:HomePage/styles.css from "wikitext" to "Sanitized CSS"
No edit summary
Line 1: Line 1:
.home-wrap{
.hp{
   max-width: 980px;
   max-width: 1100px;
   margin: 0 auto;
   margin: 0 auto;
   padding: 16px;
   padding: 24px 16px 40px;
  color: #eaf1ff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
}


.home-logo{
.hp-hero{
   text-align: center;
   text-align: center;
   margin: 8px 0 18px;
   padding: 26px 10px 20px;
}
}


.home-patchBox{
.hp-kicker{
   border: 2px solid #222;
   opacity: .85;
   border-radius: 12px;
   font-size: 14px;
   min-height: 280px;
   letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
}
}


.home-fiveRow{
.hp-title{
   margin-top: 18px;
   font-weight: 800;
   display: flex;
  font-size: 12em;
   gap: 14px;
   letter-spacing: .04em;
   margin: 8px 0 8px;
}
}


.home-smallBox{
.hp-sub{
   flex: 1 1 0;
   opacity: .85;
   min-height: 110px;
  max-width: 780px;
   border: 2px solid #222;
  margin: 0 auto 18px;
   border-radius: 12px;
  font-size: 14px;
   display: flex;
}
   align-items: center;
 
   justify-content: center;
.hp-search{
  max-width: 640px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(20,28,40,.55);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset;
}
.hp-search a{
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: .9;
}
 
.hp-patch{
  margin: 18px auto 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,14,20,.35);
  overflow: hidden;
}
 
.hp-patchLabel{
  padding: 10px 14px 0;
  opacity: .8;
  font-size: 13px;
}
 
.hp-patchBody{
   padding: 10px 14px 14px;
}
.hp-patchBody img{
  width: 100%;
  height: auto;
   border-radius: 10px;
  display: block;
}
 
/* tile grid */
.hp-tiles{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 10px;
}
 
.hp-tile{
   border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(20,28,40,.45);
  padding: 10px 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
/* Make wiki links fill the pill */
.hp-tile a{
   display: block;
  color: inherit;
  text-decoration: none;
}
 
/* responsive */
@media (max-width: 980px){
   .hp-tiles{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px){
   .hp-tiles{ grid-template-columns: repeat(2, 1fr); }
}
}

Revision as of 00:52, 1 January 2026

.hp{
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  color: #eaf1ff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hp-hero{
  text-align: center;
  padding: 26px 10px 20px;
}

.hp-kicker{
  opacity: .85;
  font-size: 14px;
  letter-spacing: .02em;
}

.hp-title{
  font-weight: 800;
  font-size: 12em;
  letter-spacing: .04em;
  margin: 8px 0 8px;
}

.hp-sub{
  opacity: .85;
  max-width: 780px;
  margin: 0 auto 18px;
  font-size: 14px;
}

.hp-search{
  max-width: 640px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(20,28,40,.55);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset;
}
.hp-search a{
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: .9;
}

.hp-patch{
  margin: 18px auto 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,14,20,.35);
  overflow: hidden;
}

.hp-patchLabel{
  padding: 10px 14px 0;
  opacity: .8;
  font-size: 13px;
}

.hp-patchBody{
  padding: 10px 14px 14px;
}
.hp-patchBody img{
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* tile grid */
.hp-tiles{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.hp-tile{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(20,28,40,.45);
  padding: 10px 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Make wiki links fill the pill */
.hp-tile a{
  display: block;
  color: inherit;
  text-decoration: none;
}

/* responsive */
@media (max-width: 980px){
  .hp-tiles{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px){
  .hp-tiles{ grid-template-columns: repeat(2, 1fr); }
}