Difference between revisions of "User:ElStrages/common.css"

From RimWorld Wiki
Jump to navigation Jump to search
Line 3: Line 3:
 
a:link:link {
 
a:link:link {
 
   color: #CC0000;
 
   color: #CC0000;
}
 
 
#p-cactions ul li a {
 
  background-color: #AAAAAA;
 
 
}
 
}
  
 
/* add logo */
 
/* add logo */
#p-logo a {
+
#p-logo {
 
   align: center;
 
   align: center;
 
   padding-top: 10px;  
 
   padding-top: 10px;  
 
   background: url("Rose.png");  
 
   background: url("Rose.png");  
   background-size: 200px;
+
   background-size: 50px 30px;
 
   background-repeat: no-repeat;
 
   background-repeat: no-repeat;
 
   border: 1px solid #0033CC;
 
   border: 1px solid #0033CC;
Line 21: Line 17:
 
body {
 
body {
 
   background-color: #333333;
 
   background-color: #333333;
  border: 1px solid #0033CC;
 
 
   color: #EEEEEE;
 
   color: #EEEEEE;
 
}
 
}
Line 27: Line 22:
 
div {
 
div {
 
   background-color: inherit;
 
   background-color: inherit;
  border: 1px solid inherit;
 
 
   color: #BBBBBB;
 
   color: #BBBBBB;
 
}
 
}
 
div#content {
 
div#content {
 
   background-color: inherit;
 
   background-color: inherit;
   border: 1px solid inherit;
+
   border-top: 1px solid #0033CC;
 +
  border-bottom: 1px solid #0033CC;
 
   color: #BBBBBB;
 
   color: #BBBBBB;
 
}
 
}

Revision as of 13:00, 5 March 2015

/* removed for now */
/* make the background behind the content area and the tabs a light grey */
a:link:link {
   color: #CC0000;
}

/* add logo */
#p-logo {
   align: center;
   padding-top: 10px; 
   background: url("Rose.png"); 
   background-size: 50px 30px;
   background-repeat: no-repeat;
   border: 1px solid #0033CC;
}

body {
   background-color: #333333;
   color: #EEEEEE;
}

div {
   background-color: inherit;
   color: #BBBBBB;
}
div#content {
   background-color: inherit;
   border-top: 1px solid #0033CC;
   border-bottom: 1px solid #0033CC;
   color: #BBBBBB;
}



/* changes the background of pre areas  */
pre { 
   background-color: #DDDDDD;
   border: 1px solid #0033CC;
}
pre.a { 
   color: #000000;
}


a, h1, h2 ,h3 ,h4 ,h5, h6 {
   font-family: Arial;
   font-size: 11px;
   color: #EEEEEE;
}

/* Fix sidebar */
div#mw-panel {
  padding-top: 100px; 
  position: fixed;
  overflow: auto;
  top: 0px;
  bottom: 0px;
  height: 100%;
  /* Prevent content overlay when sidewards scrolling */
  background-color: #333333;
  border-right: 1px solid #0033CC;
}