mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
54 lines
1.1 KiB
CSS
54 lines
1.1 KiB
CSS
/*
|
|
* jQuery Table of Content Generator for Markdown v1.0
|
|
*
|
|
* https://github.com/dafi/tocmd-generator
|
|
* Examples and documentation at: https://github.com/dafi/tocmd-generator
|
|
*
|
|
* Requires: jQuery v1.7+
|
|
*
|
|
* Copyright (c) 2013 Davide Ficano
|
|
*
|
|
* Dual licensed under the MIT and GPL licenses:
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
* http://www.gnu.org/licenses/gpl.html
|
|
*/
|
|
|
|
#toc, .toc, .mw-warning {
|
|
background-color: #F9F9F9;
|
|
border: 1px solid #AAAAAA;
|
|
font-size: 95%;
|
|
padding: 5px;
|
|
}
|
|
#toc h2, .toc h2 {
|
|
border: medium none;
|
|
display: inline;
|
|
font-size: 100%;
|
|
font-weight: bold;
|
|
padding: 0;
|
|
}
|
|
#toc #toctitle, .toc #toctitle, #toc .toctitle, .toc .toctitle {
|
|
text-align: center;
|
|
}
|
|
#toc ul, .toc ul {
|
|
list-style-image: none;
|
|
list-style-type: none;
|
|
margin-left: 0;
|
|
padding-left: 0;
|
|
text-align: left;
|
|
}
|
|
#toc ul ul, .toc ul ul {
|
|
margin: 0 0 0 2em;
|
|
}
|
|
#toc .toctoggle, .toc .toctoggle {
|
|
font-size: 94%;
|
|
}
|
|
|
|
#toc ul li {
|
|
list-style-type: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
#toc-container {
|
|
margin-bottom: 10px;
|
|
}
|