klisp

an open source interpreter for the Kernel Programming Language.
git clone http://git.hanabi.in/repos/klisp.git
Log | Files | Refs | README

style.css (595B)


      1 body{
      2  color: #444;
      3  background-color: #f5f5f5;
      4  font-family: arial;
      5  margin: 1em 15%;
      6 }
      7 
      8 hr{
      9  color: #999;
     10  background-color: #999;
     11  border-style: solid;
     12 }
     13 
     14 p{
     15  text-align: justify;
     16 }
     17 
     18 pre.example{
     19  border: 1px solid #999;
     20  background-color: #eee;
     21  margin: 1em;
     22  padding: 1em;
     23 }
     24 
     25 dd{
     26  padding: 0.5em;
     27 }
     28 
     29 code{
     30  color: #111;
     31 }
     32 
     33 a code{
     34  color: #00f;
     35 }
     36 
     37 h1.section, h2.section, h3.section, h4.section, h5.section, h6.section{
     38  color: #111;
     39 }
     40 
     41 h1.chapter, h2.chapter, h3.chapter, h4.chapter, h5.chapter, h6.chapter{
     42  color: #111;
     43 }
     44 
     45 .node a{
     46  text-decoration: none;
     47 }
     48 
     49 a:visited{
     50  color: #00f;
     51 }
     52