Home | History | Annotate | Download | only in requirements
      1 .title {
      2     text-align: center;
      3     font-weight: bold;
      4     font-size: 2.5em;
      5     line-height: 1.3;
      6     color: #4078C0;
      7 }
      8 
      9 .markdown-body {
     10     min-width: 200px;
     11     max-width: 920px;
     12     margin: 0 auto;
     13     padding: 30px;
     14 }
     15 
     16 note::before,ko::before {
     17     content: "Note: ";
     18     font-style: normal;
     19 }
     20 
     21 why::before, unknown:before {
     22     content: "Why: ";
     23     font-style: normal;
     24 }
     25 
     26 ko::before, unknown:before {
     27     color: red;
     28 }
     29 
     30 note, ko, why, unknown {
     31     font-style: italic;
     32     display: block;
     33     color: grey;
     34 }
     35 
     36 #req-TOC {
     37     display: block;
     38     float: left;
     39     height: 100%;
     40     padding: 5px;
     41 
     42     overflow: hidden;
     43     font-family: "Helvetica Neue",Helvetica,"Segoe UI",Arial,freesans,sans-serif;
     44     font-size: 14px;
     45     line-height: 1.5;
     46     word-wrap: break-word;
     47 }
     48 
     49 nav>ul {
     50     list-style: none;
     51     padding-left: 0;
     52 }
     53