Start new HTML export logic
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-10-14 23:13:09 -05:00
parent 97d3ef6cae
commit 54d07754ac
36 changed files with 122598 additions and 1 deletions

View File

@@ -0,0 +1,86 @@
/*!
* Start Bootstrap - Simple Sidebar (https://startbootstrap.com/templates/simple-sidebar)
* Copyright 2013-2020 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-simple-sidebar/blob/master/LICENSE)
*/
#wrapper {
overflow-x: hidden;
}
#sidebar-wrapper {
min-height: 100vh;
margin-left: -15rem;
-webkit-transition: margin .25s ease-out;
-moz-transition: margin .25s ease-out;
-o-transition: margin .25s ease-out;
transition: margin .25s ease-out;
}
#sidebar-wrapper .sidebar-heading {
padding: 0.875rem 1.25rem;
font-size: 1.2rem;
}
#sidebar-wrapper .list-group {
width: 15rem;
}
#page-content-wrapper {
min-width: 100vw;
}
#wrapper.toggled #sidebar-wrapper {
margin-left: 0;
}
@media (min-width: 768px) {
#sidebar-wrapper {
margin-left: 0;
}
#page-content-wrapper {
min-width: 0;
width: 100%;
}
#wrapper.toggled #sidebar-wrapper {
margin-left: -15rem;
}
}
.code-ref {
margin-top: 20px;
margin-bottom: 20px;
height: 600px;
}
.file-ref {
border: 1px solid darkgray;
margin: 20px 0;
border-radius: 5px;
padding: 10px;
display: flex;
flex-wrap: wrap;
}
.file-ref .file {
display: flex;
border: 1px solid lightgray;
padding: 10px;
border-radius: 5px;
margin-right: 10px;
}
.file-ref .file .file-name {
margin-right: 15px;
align-items: center;
display: flex;
}
.file-ref .file .dl-link {
border: 2px solid #007bff;
padding: 0 7px;
border-radius: 4px;
text-decoration: none !important;
}