je/docs/java/style.css

16 lines
428 B
CSS
Raw Normal View History

2021-06-06 17:46:45 +00:00
/* Javadoc style sheet for Java 7 and later versions */
/* Import standard style sheet for defaults */
@import url('standard-stylesheet.css');
/*
* Modify the style for code samples to use a pale blue background with
* a thin, medium blue border that matches the style of various
* headings.
*/
pre.code {
border: 1px solid #9eadc0; /* Medium blue */
padding: 2px;
background-color: #dee3e9; /* Pale blue */
}