User:JJPMaster/DoctorJones.css

From Uncyclopedia, the content-free encyclopedia
Jump to navigation Jump to search

Note: After saving, you have to bypass your browser's cache to see the changes.

  • Internet Explorer: hold down the Ctrl key and click the Refresh or Reload button, or press Ctrl+F5.
  • Firefox: hold down the Shift key while clicking Reload; alternatively press Ctrl+F5 or Ctrl-Shift-R.
  • Opera, Konqueror and Safari users can just click the Reload button.
  • Chrome: press Ctrl+F5 or Shift+F5
{{#css:
#manual-body {
  border: 4px solid #5B5B5B;
  padding: 10px;
}
.red-line {
  background-color: #A51C30;
  height: 2px;
}
.main-header {
  font-weight: bold;
  font-family: serif;
  font-size: 55px;
  line-height: 55px; /* keep the same as font-size */
  display: inline-block;
  vertical-align: top;
}
.gradient-text {
    background-color: #000;
    background-image: linear-gradient(90deg, #000, #ddd);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}
.gradient-text-2 {
    background-color: #000;
    background-image: linear-gradient(90deg, #000, #ddd, #000);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}
}}