Bulk commit of new documentation for v2016.11

This commit is contained in:
Jacob Støren
2016-11-29 10:53:43 +01:00
parent 32b1061a26
commit 4cb651eafb
90 changed files with 1210 additions and 295 deletions

View File

@@ -8,7 +8,7 @@
body {
font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 21px;
font-size: 18px;
font-weight: 300;
color: #ddd;
background: #333;
@@ -386,7 +386,7 @@ article {
@media (min-width: 768px){
article {
padding: 40px 40px 30px;
font-size: 21px;
font-size: 18px;
}
}

53
css/toc.css Normal file
View File

@@ -0,0 +1,53 @@
/*
* 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;
}