125 lines
2.1 KiB
CSS
125 lines
2.1 KiB
CSS
/*!
|
|
* 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)
|
|
*/
|
|
|
|
@font-face {
|
|
font-family: 'Raleway';
|
|
src: url('../Raleway-Regular.ttf');
|
|
font-weight: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Raleway';
|
|
src: url('../Raleway-Light.ttf');
|
|
font-weight: 100;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Raleway';
|
|
src: url('../Raleway-Bold.ttf');
|
|
font-weight: bold;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Raleway', sans-serif;
|
|
}
|
|
|
|
#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;
|
|
padding: 3px;
|
|
border: 2px solid darkgrey;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.file-ref {
|
|
border: 2px 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;
|
|
}
|
|
|
|
.database-container {
|
|
width: 100%;
|
|
border: 2px solid darkgrey;
|
|
border-radius: 4px;
|
|
margin: 15px 5px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.database-container .database-ref {
|
|
height: 600px;
|
|
width: 100%;
|
|
}
|