universe

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

markdown.css (1539B)


      1 h1 {
      2  font-family: Arial, Helvetica, sans-serif;
      3  font-size: xx-large;
      4 }
      5 
      6 h2 {
      7  font-family: Arial, Helvetica, sans-serif;
      8  font-size: x-large;
      9 }
     10 
     11 h3 {
     12  font-family: Arial, Helvetica, sans-serif;
     13  font-size: larger;
     14 }
     15 
     16 h4 {
     17  font-family: Arial, Helvetica, sans-serif;
     18  font-size: large;
     19 }
     20 
     21 h5 {
     22  font-family: Arial, Helvetica, sans-serif;
     23  font-size: medium;
     24 }
     25 
     26 h6 {
     27  font-family: Arial, Helvetica, sans-serif;
     28  font-size: small;
     29 }
     30 
     31 pre {
     32  font-family: monospace;
     33  font-size: inherit;
     34  overflow-x: auto;
     35  white-space: pre-wrap; /* Since CSS 2.1 */
     36  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
     37 }
     38 
     39 code {
     40  font-family: monospace;
     41  font-size: inherit;
     42 }
     43 
     44 code {
     45  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier,
     46    monospace;
     47  padding: 0.2em 0.4em;
     48  margin: 0;
     49  font-size: 85%;
     50 }
     51 
     52 p {
     53  font-family: Arial, Helvetica, sans-serif;
     54  font-size: inherit;
     55 }
     56 
     57 ul {
     58  font-family: Arial, Helvetica, sans-serif;
     59  font-size: inherit;
     60 }
     61 
     62 .kbd {
     63  font-family: monospace;
     64  white-space: pre;
     65  color: #444;
     66  border: 1px solid #ccc;
     67  border-radius: 4px;
     68  padding: 0.2em 0.5em 0.1em 0.5em;
     69  margin: 0 0.1em;
     70  box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset;
     71  background-color: #f7f7f7;
     72 }
     73 
     74 
     75 .insb{
     76  margin:0;
     77  padding:0;
     78  font-size:15px;
     79  line-height:116%;
     80  color:var(--accent);
     81  font-weight:bolder;
     82  }
     83  
     84  .ins{
     85  font-size:15px;
     86  line-height:116%;
     87  color:var(--accent);
     88  }