mirror of https://github.com/dani/vroom.git
Video conf based on SimpleWebRTC https://vroom.fws.fr/documentation
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
/**
|
|
* TocJS (https://github.com/nghuuphuoc/tocjs)
|
|
*
|
|
* Generate a table of contents based on headings
|
|
*
|
|
* @author http://twitter.com/nghuuphuoc
|
|
* @copyright (c) 2013 - 2014 Nguyen Huu Phuoc
|
|
* @license MIT
|
|
*/
|
|
.toc {
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px; }
|
|
.toc.affix {
|
|
position: static; }
|
|
.toc .nav > .active > a, .toc .nav > .active:hover > a,
|
|
.toc .nav > .active :focus > a {
|
|
border-right: 2px solid #428bca; }
|
|
.toc .nav .nav {
|
|
/*
|
|
* If you want to hide the sub UL elements, then add the following line
|
|
* display: none;
|
|
*/
|
|
display: block;
|
|
margin-bottom: 8px; }
|
|
.toc .nav .nav > li > a {
|
|
font-size: 90%; }
|
|
.toc .toc-heading {
|
|
color: #333333;
|
|
background-color: #f5f5f5;
|
|
border-bottom: 1px solid #dddddd; }
|
|
.toc .toc-link-2 {
|
|
padding-left: 25px; }
|
|
.toc .toc-link-3 {
|
|
padding-left: 50px; }
|
|
.toc .toc-link-4 {
|
|
padding-left: 75px; }
|
|
.toc .toc-link-5 {
|
|
padding-left: 100px; }
|
|
.toc .toc-link-6 {
|
|
padding-left: 125px; }
|
|
|
|
@media screen and (min-width: 992px) and (min-height: 600px) {
|
|
.toc.affix {
|
|
position: fixed; }
|
|
.toc .nav > .active > ul {
|
|
display: block; } }
|
|
.toc .nav .nav {
|
|
display: none; }
|
|
|