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

From City of Hope MUSH
Jump to navigation Jump to search
m
m
 
(65 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
#codetable {
 
#codetable {
  border: 1px solid #f8f9fa;
 
  color: #222;
 
 
   border-collapse: collapse;
 
   border-collapse: collapse;
 +
  font-family: "Lucida Console", monospace;
 +
}
 +
 +
#codetable tbody tr td {
 +
  padding: 3px 10px 3px 10px;
 +
}
 +
 +
#codetitle {
 +
  border-color: #999;
 +
  font-size: 30px;
 +
  font-weight: bold;
 +
  text-align: center;
 +
  width: 75%;
 
}
 
}
  
 
#codedisclaimer {
 
#codedisclaimer {
 +
  color: #d33;
 +
  background-color: #fffafa;
 +
  font-size: 16px;
 +
  font-family: sans-serif;
 
   font-weight: bold;
 
   font-weight: bold;
  font-color: #f00;
 
 
   text-align: center;
 
   text-align: center;
 
}
 
}
  
 
#codeimages {
 
#codeimages {
 +
  border-width: 0px 0px 0px 1px;
 +
  border-style: solid;
 +
  border-color: #999;
 +
  vertical-align: top;
 
}
 
}
  
 
.codeheader {
 
.codeheader {
   background-color: #ddd;
+
  border-width: 2px 0px 0px 0px;
 +
  border-style: dashed;
 +
  border-color: #999;
 +
   background-color: #eee;
 +
  font-size: 18px;
 
   font-weight: bold;
 
   font-weight: bold;
 
   text-align: center;
 
   text-align: center;
Line 21: Line 43:
  
 
.codetext {
 
.codetext {
 +
  border-color: #999;
 +
  font-size: 16px;
 +
  color: #000;
 
}
 
}

Latest revision as of 01:49, 23 July 2020

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

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

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

#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;
  vertical-align: top;
}

.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;
}