Difference between revisions of "User:Ambrosia/code.css"

From City of Hope MUSH
Jump to navigation Jump to search
m
m
Line 12: Line 12:
 
   border-color: #999;
 
   border-color: #999;
 
   font-size: 30px;
 
   font-size: 30px;
 +
  font-weight: bold;
 +
  text-align: center;
 
}
 
}
  
Line 19: Line 21:
 
   font-size: 16px;
 
   font-size: 16px;
 
   font-family: sans-serif;
 
   font-family: sans-serif;
 +
  font-weight: bold;
 +
  text-align: center;
 
}
 
}
  
Line 33: Line 37:
 
   background-color: #eee;
 
   background-color: #eee;
 
   font-size: 18px;
 
   font-size: 18px;
 +
  font-weight: bold;
 +
  text-align: center;
 
}
 
}
  
Line 39: Line 45:
 
   font-size: 16px;
 
   font-size: 16px;
 
   color: #000;
 
   color: #000;
}
 
 
.boldcenter {
 
  font-weight: bold;
 
  text-align: center;
 
}
 
 
.backcolor {
 
  background-color: #dddddd;
 
 
}
 
}

Revision as of 01:43, 23 July 2020

#codetable {
  border-collapse: collapse;
  font-family: "Lucida Console", monospace;
  width: 75%;
}

#codetable tbody tr td {
  padding: 3px 10px 3px 10px;
}

#codetitle {
  border-color: #999;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

#codedisclaimer {
  color: #d33;
  background-color: #fffafa;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: bold;
  text-align: center;
}

#codeimages {
  border-width: 0px 0px 0px 1px;
  border-style: solid;
  border-color: #999
}

.codeheader {
  border-width: 2px 0px 0px 0px;
  border-style: dashed;
  border-color: #999;
  background-color: #eee;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.codetext {
  border-color: #999;
  font-size: 16px;
  color: #000;
}