diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | Pull requests | README | LICENSE

style.css (495B)


      1 body {
      2 	max-width: 100ex;
      3 
      4 	font-family: monospace;
      5 	font-size: 14px;
      6 }
      7 
      8 .manual-text {
      9 	padding: 0 9ex 1ex 4ex;
     10 }
     11 
     12 .head, .foot {
     13 	width: 100%;
     14 	color: #999;
     15 }
     16 .head-vol {
     17 	text-align: center;
     18 }
     19 .head-rtitle {
     20 	text-align: right;
     21 }
     22 
     23 h1 {
     24 	font-size: 16px;
     25 }
     26 
     27 p {
     28 	text-align: justify;
     29 }
     30 .Bd-indent {
     31 	padding-left: 4ex;
     32 }
     33 
     34 .tbl {
     35 	border-collapse: collapse;
     36 }
     37 
     38 .tbl td {
     39 	border: 1px solid #999;
     40 	padding: 5px;
     41 }
     42 
     43 pre {
     44 	padding: 10px;
     45 	background: #434241;
     46 	color: #efefef;
     47 	overflow: auto;
     48 }