-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
158 changed files
with
40,741 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
.div-wrapper { | ||
display: block; | ||
max-height: 2000px; | ||
overflow-y: auto; | ||
-ms-overflow-style: -ms-autohiding-scrollbar; | ||
} | ||
|
||
.jumbotron { | ||
margin-bottom: 10px; | ||
} | ||
|
||
.licence { | ||
white-space: nowrap; | ||
color:gray; | ||
} | ||
|
||
.footnote { | ||
font-size:smaller; | ||
} | ||
|
||
img.logo { | ||
height:32px; | ||
} | ||
|
||
pre code { | ||
overflow-x: auto; | ||
white-space: pre-wrap; | ||
white-space: -moz-pre-wrap; | ||
white-space: -pre-wrap; | ||
white-space: -o-pre-wrap; | ||
word-wrap: break-word; | ||
} | ||
|
||
.MuiAppBar-root { | ||
z-index: 1029 !important; | ||
} | ||
/* | ||
* | ||
* ========================================== | ||
* CUSTOM UTIL CLASSES | ||
* ========================================== | ||
* | ||
*/ | ||
|
||
.dropdown div a { | ||
text-decoration: none !important; | ||
} | ||
|
||
.top-item { | ||
background-color: #e9ecef !important; | ||
} | ||
|
||
.top-item:hover { | ||
background-color: #b9bcbf !important; | ||
color: white !important; | ||
} | ||
|
||
.dropdown-item:active { | ||
background-color: #343a40!important; | ||
} | ||
|
||
.dropdown-submenu { | ||
position: relative; | ||
} | ||
|
||
.dropdown-submenu>a:after { | ||
content: "\f0da"; | ||
float: none; | ||
vertical-align: 0em; | ||
border: none; | ||
font-family: 'Font Awesome 5 Free'; | ||
} | ||
|
||
.dropdown-submenu>.dropdown-menu { | ||
top: 0; | ||
left: 100%; | ||
margin-top: 0px; | ||
margin-left: 0px; | ||
} | ||
|
||
@media (min-width: 991px) { | ||
.dropdown-menu { | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
} | ||
} | ||
|
||
/* ******************************************* */ | ||
|
||
html, | ||
body { | ||
height: 100%; | ||
min-width: 360px; | ||
/* The html and body elements cannot have any padding or margin. */ | ||
} | ||
|
||
/* Wrapper for page content to push down footer */ | ||
#wrap { | ||
min-height: 100%; | ||
height: 100%; | ||
/* Negative indent footer by its height */ | ||
margin: 0 auto -42px auto; | ||
/* Pad bottom by footer height */ | ||
/* padding: 0 0 40px 0; */ | ||
} | ||
|
||
/* Set the fixed height of the footer here */ | ||
footer { | ||
height: 40px; | ||
border-top: 1px solid grey; | ||
/* background-color: #f5f5f5;*/ | ||
} | ||
|
||
|
||
#wrap > .center-container { | ||
padding: 0px 0 0 0; | ||
margin:0; | ||
} | ||
|
||
footer > .container, .container-fluid { | ||
padding-top:5px; | ||
padding-left: 15px; | ||
padding-right: 15px; | ||
} | ||
|
||
.center-container { | ||
height:100%; | ||
} | ||
|
||
.center-row { | ||
height:100%; | ||
/*background-color: #eaeaea;*/ | ||
background-size:cover; | ||
overflow: auto; | ||
} | ||
|
||
details { | ||
border: 1px solid #aaa; | ||
border-radius: 4px; | ||
padding: .5em .5em 0; | ||
} | ||
|
||
summary { | ||
font-weight: bold; | ||
margin: -.5em -.5em 0; | ||
padding: .5em; | ||
} | ||
|
||
details[open] { | ||
padding: .5em; | ||
} | ||
|
||
details[open] summary { | ||
border-bottom: 1px solid #aaa; | ||
margin-bottom: .5em; | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* @license | ||
* Copyright 2019 Kevin Verdieck, originally developed at Palantir Technologies, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ |
Oops, something went wrong.