The R Project SVN R

Rev

Rev 88831 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 88831 Rev 88901
Line 75... Line 75...
75
 
75
 
76
/* match R-project.org colour & only show underline on hover */
76
/* match R-project.org colour & only show underline on hover */
77
a:any-link {color: #3864BA; text-decoration: none;}
77
a:any-link {color: #3864BA; text-decoration: none;}
78
a:any-link:hover {text-decoration: underline;}
78
a:any-link:hover {text-decoration: underline;}
79
 
79
 
80
/* TOC/menus: bold chapters, hide subsections, increase spacing */
80
/* TOC/menus: bold chapters, hide subsections */
81
.contents ul { font-weight: bold; }
81
.contents ul { font-weight: bold; }
82
.contents ul ul { font-weight: normal; }
82
.contents ul ul { font-weight: normal; }
83
.contents ul ul ul { display: none; }
83
.contents ul ul ul { display: none; }
-
 
84
 
-
 
85
/* increase list spacing and sync with embedded paras */
84
li { margin: 0.25em 0; }
86
ol li { margin: 1em 0; }
85
.contents ul li { margin: 0.5em 0; }
87
ul li { margin: 0.5em 0; }
86
.contents ul ul li { margin: 0.25em 0; }
88
ul ul li, ul.mini-toc li, ul li p, ol li p { margin: 0.3em 0; }
87
 
89
 
88
 
90
 
89
/* Code ---------------------------------------------------- */
91
/* Code ---------------------------------------------------- */
90
 
92
 
91
/* code blocks: remove indentation, highlight instead */
93
/* code blocks: remove indentation, highlight instead */
92
div.example {
94
div.example {
-
 
95
  margin-left: revert; /* revert Texinfo styling */
93
  margin-left: 0
96
  background-color: #f5f5f5;
94
}
97
}
95
pre {
98
pre {
96
  background-color: #f5f5f5;
-
 
97
  padding: 0.5em;
99
  padding: 0.5em;
98
  overflow: auto;
100
  overflow: auto;
99
  line-height: 1.6; /* more spaced */
101
  line-height: 1.6; /* more spaced */
100
}
102
}
101
 
103