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

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 56: Line 56:
   border: 2px solid var(--color-surface-0);
   border: 2px solid var(--color-surface-0);
   border-radius: var(--border-radius--medium);
   border-radius: var(--border-radius--medium);
  margin-left: 1rem;
}
@media only screen and ( max-width: 720px ) {
.external-image img {
  float: none;
  width: 100%;
  border: 2px solid var(--color-surface-0);
  border-radius: var(--border-radius--medium);
  margin-left: 0;
}
}
}

Revision as of 08:03, 4 August 2023

.copy {  
  cursor: pointer;      
}
.command-template.copy:active {
  background-color: var(--color-surface-3);
}

.command-template.copy {
    border: 1px solid var(--border-color-base);
    background-color: var(--color-surface-2);
    font-family: var(--font-family-monospace);
    font-size: 0.875rem;
    color: var(--color-base--emphasized);
    padding: 2px 4px;
    border-radius: var(--border-radius--small);
    font-weight: normal;
    white-space: nowrap;
}
.command-template.copy abbr {
    text-decoration: none;
}

.responsive-iframe {
  width: 100%;
  height: 450px;
}

div.responsive-img img {
    height: auto;
    max-width: 100%;
}
.page-Home .ajaxpoll-id-info, .page-Home .ajaxpoll .ajaxpoll-misc {
  display: none;
}
.page-Home .ajaxpoll .ajaxpoll-answer-vote {
  height: 1rem;
}
.page-Home .ajaxpoll label {
  padding: 0.2rem;
}

.mw-ui-icon-featured {
  width: 2rem;
  height: 2rem;
  margin: 0;
  background: url(https://www.prismparty.net/images/f/fe/Cubeylove.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-flex;
}

.external-image img {
  float: right; 
  width: 200px; 
  border: 2px solid var(--color-surface-0);
  border-radius: var(--border-radius--medium);
  margin-left: 1rem;
}

@media only screen and ( max-width: 720px ) {
.external-image img {
  float: none; 
  width: 100%; 
  border: 2px solid var(--color-surface-0);
  border-radius: var(--border-radius--medium);
  margin-left: 0;
}
}