universe

Universe
git clone https://git.dasho.dev/universe.git
Log | Files | Refs | Submodules | README

content.css (658B)


      1 .content strong {
      2  font-weight: bold;
      3 }
      4 
      5 .content em {
      6  font-style: italic;
      7 }
      8 
      9 .content del {
     10  text-decoration: line-through;
     11 }
     12 
     13 .content .centered {
     14  text-align: center;
     15 }
     16 
     17 .content blockquote {
     18  display: block;
     19  width: 100%;
     20  background: #efefed;
     21  margin: 5px 0;
     22  padding: 15px;
     23  color: #888;
     24 }
     25 
     26 .content blockquote:before {
     27  display: block;
     28  width: 100%;
     29  font-weight: bold;
     30  content: "Quote:";
     31  margin-bottom: 10px;
     32  color: #000;
     33 }
     34 
     35 .content blockquote[cite]:before {
     36  content: "Quote: " attr(cite);
     37 }
     38 
     39 .content ul {
     40  list-style: disc inside none;
     41 }
     42 
     43 .content ul li {
     44  line-height: 22px;
     45 }