Always consult the official Owners Manuals first

Difference between revisions of "MediaWiki:Common.css"

From Fractal Audio Wiki
Jump to navigation Jump to search
(Added at the request of Greg Ferguson)
 
(added <kbd> CSS)
Line 3: Line 3:
  
 
blockquote blockquote:has(> p) {
 
blockquote blockquote:has(> p) {
    background: #f5f5f5;
+
  background: #f5f5f5;
    border: 1px solid #e7e7e7;
+
  border: 1px solid #e7e7e7;
    border-left: 3px solid #071c2d;
+
  border-left: 3px solid #071c2d;
    margin: .5em 0;
+
  margin: .5em 0;
    padding: 5px;
+
  padding: 5px;
    font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', sans-serif;
+
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', sans-serif;
 +
}
 +
 
 +
kbd {
 +
  padding:0.1em 0.6em;
 +
  border:1px solid #ccc;
 +
  font-size:11px;
 +
  font-family:Arial,Helvetica,sans-serif;
 +
  background-color:#f7f7f7;
 +
  color:#333;
 +
  -moz-box-shadow:0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
 +
  -webkit-box-shadow:0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
 +
  box-shadow:0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
 +
  -moz-border-radius:3px;
 +
  -webkit-border-radius:3px;
 +
  border-radius:3px;
 +
  display:inline-block;
 +
  margin:0 0.1em;
 +
  text-shadow:0 1px 0 #fff;
 +
  line-height:1.4;
 +
  white-space:nowrap;
 
}
 
}

Revision as of 19:53, 7 March 2024

/* CSS placed here will be applied to all skins */


blockquote blockquote:has(> p) {
  background: #f5f5f5;
  border: 1px solid #e7e7e7;
  border-left: 3px solid #071c2d;
  margin: .5em 0;
  padding: 5px;
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', sans-serif;
}

kbd {
  padding:0.1em 0.6em;
  border:1px solid #ccc;
  font-size:11px;
  font-family:Arial,Helvetica,sans-serif;
  background-color:#f7f7f7;
  color:#333;
  -moz-box-shadow:0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
  -webkit-box-shadow:0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
  box-shadow:0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
  -moz-border-radius:3px;
  -webkit-border-radius:3px;
  border-radius:3px;
  display:inline-block;
  margin:0 0.1em;
  text-shadow:0 1px 0 #fff;
  line-height:1.4;
  white-space:nowrap;
}