MediaWiki

Difference between revisions of "Common.css"

From DelDOT CADD Wiki

Line 18: Line 18:
  opacity: 0.65;
  opacity: 0.65;
  display: block;
  display: block;
  height:70vh;
  height:80vh;
  /*overflow: scroll;*/
  overflow: scroll;
    
    
  }
  }

Revision as of 09:53, 1 October 2021

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

/* Table of Contents modifications */
.noautonum .tocnumber { display: none; }

.cFloat {
 position: fixed;
 right: 0;
 top: 7em;
 background-color: white;

 /*This keeps it above the Circles.*/
 z-index: 1;
 max-width: 700px;
}

.cFloat:not(:hover) {
 opacity: 0.65;
 display: block;
 height:80vh;
 overflow: scroll;
  
 }
.cFloat:hover {
 opacity: 1.0;
 display: block;
 height:70vh;
 overflow: scroll;
}



/* Change the body font-family for entire site. */
body {
   font-family: calibri light;
}


/* Don't like the black top bar? Copy this into your Foreground.css and change the colors 
.top-bar, 
.top-bar-section ul, 
.top-bar-section ul li.active > a, 
.top-bar-section li a:not(.button), 
.top-bar-section .has-form {
    background: ##3366ff;
}

.top-bar-section > ul > .divider,
.top-bar-section > ul > [role="separator"] {
  border-color: #3366ff;
}
*/


/* CSS for Links -----------------------------------------*/

/* A link that has not been visited */
a:link {
    color: blue;
}
/* A link that has been visited */
a:visited {
    color: blue;
}
/* A link that is hovered on */
a:hover {
    color: red;
}
/* A link that is selected */
a:active {
    color: green;
}

/* -----------------------------------------------------*/

<div style="text-align: center;">   [[#top|[Back to Top]]]</div>