Toggle menu
Toggle preferences menu
Toggle personal menu
Nejste přihlášen(a)
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Porovnání verzí

MediaWiki interface page
Bez shrnutí editace
Bez shrnutí editace
Řádek 1: Řádek 1:
.thumbinner .mw-file-source {
/* Zlatý text (metalický) */
   display: none !important;
.gold-text {
}
   /* ostrý vertikální přechod se záblesky */
  background: linear-gradient(
    180deg,
    #fff7d1 0%,
    #f4d98b 16%,
    #c9953a 28%,
    #ffe7a3 40%,
    #9e6a1f 52%,
    #f8e7b5 66%,
    #c88b35 78%,
    #7a4b12 88%,
    #e6c469 100%
  );


body.mw-special-Search span.feedback {
  -webkit-background-clip: text;
    display: none;
  background-clip: text;
}
  color: transparent;                /* klíč k textovému gradientu */


table .smw-chain-marker {
  /* jemná plasticita */
opacity: 0;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.35));
}
}


.mw-cookiewarning-container {
/* Volitelné: trochu „lesku“ šikmým přechodem přes celý element */
    top: auto;
.gold-text.shine {
    bottom: 0;
  position: relative;
  display: inline-block;
}
}
 
.gold-text.shine::after {
/** Ref Image margin **/
  content: "";
.reference-text img {
  position: absolute; inset: 0;
    margin-right: 5px;
  background: linear-gradient(
}
     70deg,
 
     transparent 15%,
/** Base Table styles */
     rgba(255,255,255,.25) 25%,
.mw-capiunto-infobox.wikitable {
     transparent 38%
    margin-top: 0;
  );
    margin-left: 2rem;
  mix-blend-mode: screen;             /* dodá highlight, ne vždy nutné */
}
  pointer-events: none;
 
.mw-capiunto-infobox caption,
table.mw-capiunto-infobox caption {
    text-align: center;
    padding-bottom: 0.5rem;
    display: block;
}
 
table.mw-capiunto-infobox tbody tr:first-of-type > :first-child {
    overflow: hidden;
    border-top-left-radius: var(--border-radius--large);
}
 
table.mw-capiunto-infobox tbody tr:first-of-type > :last-child {
     border-top-right-radius: var(--border-radius--large);
     overflow: hidden;
}
 
table.mw-capiunto-infobox tbody tr:last-of-type > :first-child {
     overflow: hidden;
    border-bottom-left-radius: var(--border-radius--large);
}
 
table.mw-capiunto-infobox tbody tr:last-of-type > :last-child {
    border-bottom-right-radius: var(--border-radius--large);
     overflow: hidden;
}
 
 
/** Ul styles **/
.ul-col-2 {
    column-count: 2;
}
 
.ul-col-3 {
    column-count: 3;
}
 
.ul-col-4 {
    column-count: 4;
}
 
/** Helper */
.text-center {
    text-align: center;
}
 
.broadtable {
    display: table;
}
 
.center-block {
    display: block;
    text-align: center;
}
 
.img-responsive {
    max-width: 100% !important;
    height: auto;
}
 
@media screen and (max-width: 460px) {
    .mw-capiunto-infobox {
        float: none;
    }
 
    .mw-capiunto-infobox.wikitable {
        margin-left: 0;
    }
}
}

Verze z 12. 10. 2025, 20:31

/* Zlatý text (metalický) */
.gold-text {
  /* ostrý vertikální přechod se záblesky */
  background: linear-gradient(
    180deg,
    #fff7d1 0%,
    #f4d98b 16%,
    #c9953a 28%,
    #ffe7a3 40%,
    #9e6a1f 52%,
    #f8e7b5 66%,
    #c88b35 78%,
    #7a4b12 88%,
    #e6c469 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;                 /* klíč k textovému gradientu */

  /* jemná plasticita */
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.35));
}

/* Volitelné: trochu „lesku“ šikmým přechodem přes celý element */
.gold-text.shine {
  position: relative;
  display: inline-block;
}
.gold-text.shine::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    70deg,
    transparent 15%,
    rgba(255,255,255,.25) 25%,
    transparent 38%
  );
  mix-blend-mode: screen;             /* dodá highlight, ne vždy nutné */
  pointer-events: none;
}