initial upload
7
docs/assets/css/bootstrap.min.css
vendored
Executable file
207
docs/assets/css/datepicker.css
Executable file
@@ -0,0 +1,207 @@
|
||||
.qs-datepicker {
|
||||
color: black;
|
||||
position: absolute;
|
||||
width: 250px;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
font-family: sans-serif;
|
||||
font-size: 14px;
|
||||
z-index: 9001;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
border: 1px solid gray;
|
||||
border-radius: 4.22275px;
|
||||
overflow: hidden;
|
||||
background: white;
|
||||
box-shadow: 0 20px 20px -15px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.qs-datepicker * {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.qs-datepicker.qs-hidden {
|
||||
display: none;
|
||||
}
|
||||
.qs-datepicker .qs-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background: rgba(0, 0, 0, 0.75);
|
||||
color: white;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: .5em;
|
||||
z-index: 1;
|
||||
opacity: 1;
|
||||
transition: opacity 0.3s;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
.qs-datepicker .qs-overlay.qs-hidden {
|
||||
opacity: 0;
|
||||
z-index: -1;
|
||||
}
|
||||
.qs-datepicker .qs-overlay .qs-close {
|
||||
-ms-flex-item-align: end;
|
||||
align-self: flex-end;
|
||||
display: inline-table;
|
||||
padding: .5em;
|
||||
line-height: .77;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
}
|
||||
.qs-datepicker .qs-overlay .qs-overlay-year {
|
||||
display: block;
|
||||
border: none;
|
||||
background: transparent;
|
||||
border-bottom: 1px solid white;
|
||||
border-radius: 0;
|
||||
color: white;
|
||||
font-size: 14px;
|
||||
padding: .25em 0;
|
||||
margin: auto 0 .5em;
|
||||
width: calc(100% - 1em);
|
||||
}
|
||||
.qs-datepicker .qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
.qs-datepicker .qs-overlay .qs-submit {
|
||||
border: 1px solid white;
|
||||
border-radius: 4.22275px;
|
||||
padding: .5em;
|
||||
margin: 0 auto auto;
|
||||
cursor: pointer;
|
||||
background: rgba(128, 128, 128, 0.4);
|
||||
}
|
||||
.qs-datepicker .qs-overlay .qs-submit.qs-disabled {
|
||||
color: gray;
|
||||
border-color: gray;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.qs-datepicker .qs-controls {
|
||||
width: 100%;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-pack: justify;
|
||||
justify-content: space-between;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-ms-flex-positive: 1;
|
||||
flex-grow: 1;
|
||||
-ms-flex-negative: 0;
|
||||
flex-shrink: 0;
|
||||
background: lightgray;
|
||||
filter: blur(0px);
|
||||
transition: filter 0.3s;
|
||||
}
|
||||
.qs-datepicker .qs-controls.qs-blur {
|
||||
filter: blur(5px);
|
||||
}
|
||||
.qs-datepicker .qs-arrow {
|
||||
height: 25px;
|
||||
width: 25px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
border-radius: 5px;
|
||||
transition: background .15s;
|
||||
}
|
||||
.qs-datepicker .qs-arrow:hover {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.qs-datepicker .qs-arrow:hover.qs-left:after {
|
||||
border-right-color: black;
|
||||
}
|
||||
.qs-datepicker .qs-arrow:hover.qs-right:after {
|
||||
border-left-color: black;
|
||||
}
|
||||
.qs-datepicker .qs-arrow:after {
|
||||
content: '';
|
||||
border: 6.25px solid transparent;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transition: border .2s;
|
||||
}
|
||||
.qs-datepicker .qs-arrow.qs-left:after {
|
||||
border-right-color: gray;
|
||||
right: 50%;
|
||||
transform: translate(25%, -50%);
|
||||
}
|
||||
.qs-datepicker .qs-arrow.qs-right:after {
|
||||
border-left-color: gray;
|
||||
left: 50%;
|
||||
transform: translate(-25%, -50%);
|
||||
}
|
||||
.qs-datepicker .qs-month-year {
|
||||
font-weight: bold;
|
||||
transition: border .2s;
|
||||
border-bottom: 1px solid transparent;
|
||||
cursor: pointer;
|
||||
}
|
||||
.qs-datepicker .qs-month-year:hover {
|
||||
border-bottom: 1px solid gray;
|
||||
}
|
||||
.qs-datepicker .qs-month-year:focus,
|
||||
.qs-datepicker .qs-month-year:active:focus {
|
||||
outline: none;
|
||||
}
|
||||
.qs-datepicker .qs-month {
|
||||
padding-right: .5ex;
|
||||
}
|
||||
.qs-datepicker .qs-year {
|
||||
padding-left: .5ex;
|
||||
}
|
||||
.qs-datepicker .qs-squares {
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
padding: 5px;
|
||||
filter: blur(0px);
|
||||
transition: filter 0.3s;
|
||||
}
|
||||
.qs-datepicker .qs-squares.qs-blur {
|
||||
filter: blur(5px);
|
||||
}
|
||||
.qs-datepicker .qs-square {
|
||||
width: 14.28571429%;
|
||||
height: 25px;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
transition: background .1s;
|
||||
border-radius: 4.22275px;
|
||||
}
|
||||
.qs-datepicker .qs-square.qs-current {
|
||||
font-weight: bold;
|
||||
}
|
||||
.qs-datepicker .qs-square.qs-active {
|
||||
background: lightblue;
|
||||
}
|
||||
.qs-datepicker .qs-square.qs-disabled span {
|
||||
opacity: .2;
|
||||
}
|
||||
.qs-datepicker .qs-square.qs-empty {
|
||||
cursor: default;
|
||||
}
|
||||
.qs-datepicker .qs-square.qs-disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.qs-datepicker .qs-square.qs-day {
|
||||
cursor: default;
|
||||
font-weight: bold;
|
||||
color: gray;
|
||||
}
|
||||
.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):hover {
|
||||
background: orange;
|
||||
}
|
||||
88
docs/assets/css/footer.css
Executable file
@@ -0,0 +1,88 @@
|
||||
/*
|
||||
|
||||
Begin footer CSS
|
||||
|
||||
*/
|
||||
|
||||
li {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.lg-output {
|
||||
font-size: 0.9em;
|
||||
background-color: rgb(40,40,40);
|
||||
color: rgba(255,255,255);
|
||||
}
|
||||
|
||||
.footer-distributed{
|
||||
background-color: #1F252A;
|
||||
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
font: normal 16px sans-serif;
|
||||
|
||||
padding: 45px 50px;
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-left p{
|
||||
color: #8f9296;
|
||||
font-size: 12px;
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
/* Footer links */
|
||||
|
||||
.footer-distributed p.footer-links{
|
||||
font-size:14px;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
margin: 0 0 10px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.footer-distributed p.footer-links a{
|
||||
display:inline-block;
|
||||
line-height: 1.8;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-right{
|
||||
float: right;
|
||||
margin-top: 6px;
|
||||
max-width: 180px;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-right a{
|
||||
display: inline-block;
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
background-color: #33383b;
|
||||
border-radius: 2px;
|
||||
|
||||
font-size: 20px;
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
line-height: 35px;
|
||||
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
|
||||
.footer-distributed .footer-left,
|
||||
.footer-distributed .footer-right{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-right{
|
||||
float: none;
|
||||
margin: 0 auto 20px;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-left p.footer-links{
|
||||
line-height: 1.8;
|
||||
}
|
||||
}
|
||||
152
docs/assets/css/index_page_style.css
Executable file
@@ -0,0 +1,152 @@
|
||||
.extended-content-container {
|
||||
width: 100vw;
|
||||
position: relative;
|
||||
left: 50%;
|
||||
right: 50%;
|
||||
top: -70px;
|
||||
margin-left: -50vw;
|
||||
margin-right: -50vw;
|
||||
background-color:#68A5F3;
|
||||
padding-bottom: 15px;
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 960px) {
|
||||
.extended-content-container {
|
||||
top: -70px;
|
||||
}
|
||||
}
|
||||
|
||||
.extended-content {
|
||||
width: 100%;
|
||||
background-color:#68A5F3;
|
||||
text-align:center;
|
||||
color: white;
|
||||
font-size: 25pt;
|
||||
}
|
||||
|
||||
/*
|
||||
Button Styles
|
||||
Inspired by 'CSS Button Animations' by Alex Loomer
|
||||
|
||||
https://codepen.io/atloomer/pen/JEaRWX
|
||||
*/
|
||||
|
||||
.button {
|
||||
display: inline-flex;
|
||||
height: 40px;
|
||||
width: 165px;
|
||||
/*border: 2px solid #BFC0C0;*/
|
||||
margin: 20px 20px 20px 20px;
|
||||
color: #BFC0C0;
|
||||
text-transform: uppercase;
|
||||
text-decoration: none;
|
||||
font-size: 10pt;
|
||||
letter-spacing: 1.5px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Third Button */
|
||||
|
||||
#button-3 {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
border: 2px solid white;
|
||||
background: #3570B3;
|
||||
}
|
||||
|
||||
#button-3 a {
|
||||
position: relative;
|
||||
transition: all .45s ease-Out;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#circle {
|
||||
width: 0%;
|
||||
height: 0%;
|
||||
opacity: 0;
|
||||
line-height: 40px;
|
||||
border-radius: 50%;
|
||||
background: #F0D451;
|
||||
position: absolute;
|
||||
transition: all .5s ease-Out;
|
||||
top: 20px;
|
||||
left: 70px;
|
||||
}
|
||||
|
||||
#button-3:hover #circle {
|
||||
width: 200%;
|
||||
height: 500%;
|
||||
opacity: 1;
|
||||
top: -70px;
|
||||
left: -70px;
|
||||
}
|
||||
|
||||
#button-3:hover a {
|
||||
color: #2D3142;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Fourth Button */
|
||||
|
||||
#button-4 {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#button-4 a {
|
||||
position: relative;
|
||||
transition: all .45s ease-Out;
|
||||
color: white;
|
||||
}
|
||||
|
||||
#underline {
|
||||
width: 100%;
|
||||
height: 2.5px;
|
||||
margin-top: 15px;
|
||||
align-self: flex-end;
|
||||
left: -200px;
|
||||
background: #F0D451;
|
||||
position: absolute;
|
||||
transition: all .3s ease-Out;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
#button-4:hover #underline {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
#button-4:hover a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.accordion-item input {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.accordion-header {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
padding: 10px;
|
||||
#background-color: #f1f1f1;
|
||||
border: 1px solid #ddd;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.accordion-content {
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
transition: max-height 0.3s ease;
|
||||
padding: 0 10px;
|
||||
background-color: #fff;
|
||||
border-top: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.accordion-item input:checked ~ .accordion-content {
|
||||
max-height: 800px; /* Set a reasonable max-height */
|
||||
}
|
||||
18
docs/assets/css/style.scss
Executable file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
---
|
||||
|
||||
/*@import "{{ site.theme }}";*/
|
||||
|
||||
pre,
|
||||
code {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
font: 14px 'Source Code Pro', monospace;
|
||||
color: #111;
|
||||
border: 0;
|
||||
background-color: #f9f9f9;
|
||||
resize: none;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
|
||||
652
docs/assets/css/templatemo-style.css
Executable file
@@ -0,0 +1,652 @@
|
||||
/*
|
||||
|
||||
Journey Template
|
||||
http://www.templatemo.com/tm-511-journey
|
||||
|
||||
Primary color (light blue) : #69c6ba
|
||||
Highlight color (pink) : #c66995
|
||||
--------------------------------------
|
||||
|
||||
*/
|
||||
|
||||
.tm-page-wrap {
|
||||
max-width: 1400px;
|
||||
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
||||
background: white;
|
||||
}
|
||||
|
||||
.tm-container-outer {
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.tm-content-box { box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); }
|
||||
.tm-text-gray { color: #787676; }
|
||||
|
||||
.tm-text-highlight {
|
||||
color: #c66995;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.tm-bg-primary { background: #69c6ba; }
|
||||
.tm-bg-highlight { background: #c66995; }
|
||||
|
||||
.btn-primary {
|
||||
background: #69c6ba;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.btn-primary:hover { background: #c66995; }
|
||||
.tm-top-bar .navbar-expand-lg .navbar-nav .nav-link { padding: 50px 35px; }
|
||||
|
||||
.tm-top-bar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
z-index: 10000;
|
||||
transition: all 0.2s ease-in-out;
|
||||
height: 119px;
|
||||
|
||||
/* Navigation bar BG color */
|
||||
background: #212329;
|
||||
}
|
||||
|
||||
.tm-top-bar.active {
|
||||
height: 60px;
|
||||
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
||||
.tm-top-bar.active .navbar-expand-lg .navbar-nav .nav-link { padding: 20px 35px; }
|
||||
.tm-top-bar.active .navbar-brand { font-size: 1.4rem; }
|
||||
|
||||
.tm-top-bar .navbar-brand img {
|
||||
width: 60px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.tm-top-bar.active .navbar-brand img { width: 40px; }
|
||||
.tm-top-bar-bg { height: 119px; }
|
||||
.tm-top-bar a { color: rgb(255,255,255); }
|
||||
|
||||
.navbar-brand {
|
||||
font-size: 2.2rem;
|
||||
/*text-transform: uppercase; */
|
||||
}
|
||||
|
||||
.navbar {
|
||||
font-weight: 700;
|
||||
width: 100%;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
/* TODO : change color here! */
|
||||
.nav-link.active, .nav-link:hover { color: rgb(102,219,249); }
|
||||
|
||||
.navbar-toggler-icon {
|
||||
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255, 255, 255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
|
||||
}
|
||||
|
||||
.navbar-toggler {
|
||||
border-color: rgb(255,255,255);/*rgb(104, 199, 187);*/
|
||||
border-radius: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tm-banner-title {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.tm-banner-subtitle {
|
||||
font-size: 1.5rem;
|
||||
margin-top: 10px;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.tm-banner-header { color: white; }
|
||||
.tm-banner-overlay {
|
||||
z-index: 1;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
overflow: auto;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
.tm-banner-bg {
|
||||
background: url(../img/banner.jpg) center top no-repeat;
|
||||
min-height: 720px;
|
||||
position: relative;
|
||||
}
|
||||
.tm-banner-row {
|
||||
position: relative;
|
||||
z-index: 100;
|
||||
justify-content: center;
|
||||
padding-top: 100px;
|
||||
}
|
||||
.tm-banner-row-header { text-align: center; }
|
||||
.tm-down-arrow-link {
|
||||
color: white;
|
||||
background-color: #69c6ba;
|
||||
border-radius: 50%;
|
||||
padding: 10px 15px;
|
||||
margin-top: 0px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.tm-down-arrow-link:hover,
|
||||
.tm-down-arrow-link:focus {
|
||||
color: white;
|
||||
background-color: #c66995;
|
||||
}
|
||||
|
||||
/* Search form */
|
||||
select.tm-select.form-control:not([size]):not([multiple]) { height: 45px; }
|
||||
.form-control {
|
||||
font-size: 0.8rem;
|
||||
padding: .75rem;
|
||||
}
|
||||
label { font-weight: 700; }
|
||||
.tm-search-form {
|
||||
background-color: #f5f6f6;
|
||||
padding: 25px 25px 15px;
|
||||
width: 100%;
|
||||
max-width: 830px;
|
||||
margin-left: 15px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.tm-form-group { float: left; }
|
||||
.tm-form-group-pad { padding: 0 8px; }
|
||||
.tm-form-group-1 { width: 50%; }
|
||||
.tm-form-group-2 { width: 50%; }
|
||||
.tm-form-group-3 { width: 25%; }
|
||||
.form-control { border-radius: 0; }
|
||||
|
||||
.tm-btn {
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 400;
|
||||
padding: 12px 20px;
|
||||
}
|
||||
|
||||
.tm-btn-white { background: white; }
|
||||
.tm-btn-white-primary { color: #69c6ba; }
|
||||
.tm-btn-white-highlight { color: #c66995; }
|
||||
|
||||
.tm-btn-white-primary:hover,
|
||||
.tm-btn-white-primary:focus,
|
||||
.tm-btn-white-primary:active {
|
||||
background: #c66995;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.tm-btn-white-highlight:hover,
|
||||
.tm-btn-white-highlight:focus,
|
||||
.tm-btn-white-highlight:active {
|
||||
background: #69c6ba;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.tm-btn-search { width: 100%; }
|
||||
|
||||
.tm-btn-search:hover,
|
||||
.tm-btn-search:active,
|
||||
.tm-btn-search:focus {
|
||||
background: #c66995;
|
||||
}
|
||||
|
||||
.tm-bg-gray { background-color: #efefef; }
|
||||
.tm-about-text-wrap { max-width: 830px; }
|
||||
|
||||
.tm-right {
|
||||
display: inline-block;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.tm-slideshow-section {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.tm-slideshow-section-reverse {
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: reverse;
|
||||
-webkit-flex-direction: row-reverse;
|
||||
-ms-flex-direction: row-reverse;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.tm-slideshow { width: 50%; }
|
||||
|
||||
.tm-slideshow-description {
|
||||
padding: 50px;
|
||||
color: white;
|
||||
width: 48%;
|
||||
z-index: 100;
|
||||
margin-left: -42px;
|
||||
}
|
||||
|
||||
.tm-slideshow-description-left {
|
||||
margin-left: auto;
|
||||
margin-right: -42px;
|
||||
}
|
||||
|
||||
.tm-position-relative { position: relative; }
|
||||
|
||||
.slick-prev, .slick-next {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.slick-prev, .slick-next,
|
||||
.slick-prev:focus,
|
||||
.slick-prev:active,
|
||||
.slick-next:focus,
|
||||
.slick-next:active {
|
||||
background: rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
.slick-prev:before, .slick-next:before { font-size: 22px; }
|
||||
|
||||
.slick-prev:hover,
|
||||
.slick-next:hover {
|
||||
background: #69c6ba;
|
||||
}
|
||||
|
||||
.tm-slideshow-highlight .slick-prev:hover,
|
||||
.tm-slideshow-highlight .slick-next:hover {
|
||||
background: #c66995;
|
||||
}
|
||||
|
||||
.slick-prev {
|
||||
left: auto;
|
||||
right: 95px;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.tm-right .slick-prev {
|
||||
left: 42px;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
.slick-next { right: 42px; }
|
||||
|
||||
.tm-right .slick-next {
|
||||
right: auto;
|
||||
left: 94px;
|
||||
}
|
||||
|
||||
/* Tabs */
|
||||
.tm-tabs-links {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: stretch;
|
||||
-webkit-align-items: stretch;
|
||||
-ms-flex-align: stretch;
|
||||
align-items: stretch;
|
||||
-webkit-box-pack: space-evenly;
|
||||
-webkit-justify-content: space-evenly;
|
||||
-ms-flex-pack: space-evenly;
|
||||
justify-content: space-evenly;
|
||||
background: #69c6ba;
|
||||
}
|
||||
|
||||
.tm-tab-link {
|
||||
padding: 30px 25px;
|
||||
text-align: center;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
text-transform: uppercase;
|
||||
color: white;
|
||||
font-weight: 400;
|
||||
font-size: 0.9rem;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.tm-tab-link:hover { color: white; }
|
||||
|
||||
.tm-tab-link-li {
|
||||
background: transparent;
|
||||
-webkit-box-flex: 1;
|
||||
-webkit-flex: 1 1 auto;
|
||||
-ms-flex: 1 1 auto;
|
||||
flex: 1 1 auto;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.tm-tab-link:hover,
|
||||
.tm-tab-link.active {
|
||||
background: #c66995;
|
||||
}
|
||||
|
||||
.tab-pane {
|
||||
max-width: 970px;
|
||||
margin: 60px auto;
|
||||
}
|
||||
|
||||
.tm-recommended-place {
|
||||
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
justify-content: space-around;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.tm-recommended-title {
|
||||
font-size: 1.2rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.tm-recommended-img { width: 270px; }
|
||||
|
||||
.tm-recommended-description-box {
|
||||
padding: 30px;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.tm-recommended-price-box {
|
||||
background-color: #69c6ba;
|
||||
background-image: url(../img/button-curve.png);
|
||||
background-repeat: no-repeat;
|
||||
background-size: auto 100%;
|
||||
font-weight: 400;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: column;
|
||||
-ms-flex-direction: column;
|
||||
flex-direction: column;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
padding-left: 20px;
|
||||
width: 200px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.tm-recommended-price-box:hover { background-color: #c66995; }
|
||||
|
||||
.tm-recommended-price {
|
||||
color: white;
|
||||
font-size: 1.6rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.tm-recommended-price-link {
|
||||
color: white;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.tm-d-table { display: table; }
|
||||
|
||||
footer {
|
||||
background: #69c6ba;
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px;
|
||||
text-align: center;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
footer a { color: #fff; }
|
||||
|
||||
footer a:hover { color: #900; }
|
||||
|
||||
footer p { color: white; }
|
||||
|
||||
.tm-footer-text-highlight {
|
||||
color: white;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.tm-footer-text-highlight:hover { color: #c66995; }
|
||||
|
||||
.tm-contact-form {
|
||||
background: white;
|
||||
width: 470px;
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
right: 100px;
|
||||
padding: 20px;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
background-color: #f5f5f5;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.form-control:focus {
|
||||
border-color: #69c6ba;
|
||||
box-shadow: 0 0 0 0.1rem #69c6babf;
|
||||
}
|
||||
|
||||
.tm-name-container,
|
||||
.tm-email-container {
|
||||
width: 210px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.tm-email-container { margin-left: 10px; }
|
||||
|
||||
.tm-btn-send {
|
||||
width: 100%;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
cursor: pointer;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
#google-map { height: 600px; }
|
||||
|
||||
@media screen and (max-width: 1080px) {
|
||||
.tm-tab-link-li { width: 25%; }
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1033px) {
|
||||
.tm-slideshow-description { width: 55%; }
|
||||
}
|
||||
|
||||
/* TODO */
|
||||
@media screen and (max-width: 991px) {
|
||||
.tm-top-bar .navbar-expand-lg .navbar-nav .nav-link {
|
||||
padding: 15px 20px;
|
||||
background: rgb(33,36,41);
|
||||
}
|
||||
|
||||
.tm-top-bar, .tm-top-bar-bg { height: auto; }
|
||||
|
||||
#mainNav {
|
||||
width: 250px;
|
||||
position: absolute;
|
||||
top: 53px;
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
.tm-top-bar {
|
||||
height: 60px;
|
||||
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.tm-top-bar.active .navbar-expand-lg .navbar-nav .nav-link,
|
||||
.tm-top-bar .navbar-expand-lg .navbar-nav .nav-link { padding: 15px; }
|
||||
|
||||
.tm-top-bar .navbar-brand { font-size: 1.4rem; }
|
||||
|
||||
.tm-top-bar .navbar-brand img {
|
||||
width: 60px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.tm-top-bar .navbar-brand img { width: 40px; }
|
||||
|
||||
.tab-pane {
|
||||
margin-left: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.tm-recommended-description-box { width: 450px; }
|
||||
}
|
||||
|
||||
@media screen and (max-width: 986px) {
|
||||
.tm-slideshow-section { flex-direction: column; }
|
||||
|
||||
.tm-slideshow,
|
||||
.tm-slideshow-description {
|
||||
width: 100%;
|
||||
max-width: 700px;
|
||||
}
|
||||
|
||||
.tm-slideshow-description {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.slick-prev, .slick-next {
|
||||
bottom: 0;
|
||||
top: auto;
|
||||
}
|
||||
|
||||
.tm-contact-form {
|
||||
position: static;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.tm-name-container,
|
||||
.tm-email-container {
|
||||
width: 49%;
|
||||
}
|
||||
|
||||
.tm-email-container {
|
||||
margin-left: 0;
|
||||
float: right;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (max-width: 860px) {
|
||||
.tm-recommended-description-box { width: 350px; }
|
||||
}
|
||||
|
||||
@media screen and (max-width: 826px) {
|
||||
|
||||
.body {
|
||||
padding-top: 300px;
|
||||
content: "test\nsdfg\nsdfg\nsdfg\nsfg\n";
|
||||
}
|
||||
|
||||
.tm-banner-row-header { padding-top: 120px; }
|
||||
|
||||
.tm-recommended-place-wrap {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
max-width: 600px;
|
||||
margin: 0 auto 15px;
|
||||
}
|
||||
|
||||
.tm-recommended-place {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 270px;
|
||||
}
|
||||
|
||||
.tm-recommended-price,
|
||||
.tm-recommended-price-link {
|
||||
position: relative;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.tm-recommended-price { padding-top: 50px; }
|
||||
|
||||
.tm-recommended-price-box {
|
||||
width: 270px;
|
||||
height: 180px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding-left: 0;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.tm-recommended-price-box:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 180px;
|
||||
height: 270px;
|
||||
top: -45px;
|
||||
left: 45px;
|
||||
z-index: 27;
|
||||
background: url(../img/button-curve.png) 0 0 no-repeat;
|
||||
-webkit-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
background-size: auto 100%;
|
||||
}
|
||||
|
||||
.tm-recommended-price-box,
|
||||
.tm-recommended-price-box:hover {
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.tm-recommended-description-box { width: 270px; }
|
||||
}
|
||||
|
||||
@media screen and (max-width: 767px) {
|
||||
.tm-banner-row {
|
||||
padding-top: 80px;
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
.tm-banner-header { margin-top: 100px; }
|
||||
|
||||
.tm-form-group-1,
|
||||
.tm-form-group-2,
|
||||
.tm-form-group-3 {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
11196
docs/assets/css/uikit_theme.css
Executable file
332
docs/assets/globalstyle.css
Executable file
@@ -0,0 +1,332 @@
|
||||
/*
|
||||
|
||||
Global stylesheet for GitHub markdown pages.
|
||||
Extend the configuration of classes here.
|
||||
|
||||
As a general rule, a Markdown -> HTML translation looks like:
|
||||
|
||||
# -> h1
|
||||
## -> h2
|
||||
### -> h3
|
||||
> -> blockquote
|
||||
`code` -> code
|
||||
|
||||
Be careful as pre-defined class and/or id properties may be overwritten.
|
||||
|
||||
View the source of a page in the Developer mode of your browser
|
||||
to see more precisely how Markdown gets rendered as HTML.
|
||||
|
||||
*/
|
||||
|
||||
/*
|
||||
|
||||
Global document settings
|
||||
|
||||
*/
|
||||
|
||||
.lg-output {
|
||||
background-color: rgb(40,40,40);
|
||||
color: rgba(255,255,255);
|
||||
}
|
||||
|
||||
.lg-background-color {
|
||||
background-color: #212328;
|
||||
}
|
||||
|
||||
code.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
ol, ul {
|
||||
font: 300 16px/1.7 'Roboto Slab', serif;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
pre {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
font: 14px 'Source Code Pro', monospace;
|
||||
color: #111;
|
||||
border: 0;
|
||||
background-color: #F8F8F8;
|
||||
resize: none;
|
||||
margin: 20px 0;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 3px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
code {
|
||||
color: #111;
|
||||
background-color: #F2F2F2;
|
||||
padding: .1rem .3rem;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Begin search bar CSS
|
||||
|
||||
*/
|
||||
|
||||
input {
|
||||
outline: none;
|
||||
}
|
||||
input[type=text] {
|
||||
-webkit-appearance: textfield;
|
||||
-webkit-box-sizing: content-box;
|
||||
font-family: inherit;
|
||||
font-size: 100%;
|
||||
}
|
||||
input::-webkit-search-decoration,
|
||||
input::-webkit-search-cancel-button {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input[type=text] {
|
||||
background: #212328 url(img/search.png) no-repeat 9px center;
|
||||
border: solid 1px #ccc;
|
||||
padding: 9px 10px 9px 32px;
|
||||
width: 55px;
|
||||
|
||||
-webkit-border-radius: 10em;
|
||||
-moz-border-radius: 10em;
|
||||
border-radius: 10em;
|
||||
|
||||
-webkit-transition: all .5s;
|
||||
-moz-transition: all .5s;
|
||||
transition: all .5s;
|
||||
color: #999999;
|
||||
}
|
||||
input[type=text]:focus {
|
||||
width: 130px;
|
||||
background-color: #fff;
|
||||
border-color: #76A3ED;
|
||||
|
||||
-webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
|
||||
-moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
|
||||
box-shadow: 0 0 5px rgba(109,207,246,.5);
|
||||
}
|
||||
|
||||
input:-moz-placeholder {
|
||||
color: #999;
|
||||
}
|
||||
input::-webkit-input-placeholder {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
#searchform input[type=text] {
|
||||
display: block;
|
||||
margin: 0 0 0 auto;
|
||||
width: 15px;
|
||||
padding-left: 10px;
|
||||
color: transparent;
|
||||
cursor: pointer;
|
||||
}
|
||||
#searchform input[type=text]:hover {
|
||||
background-color: #fff;
|
||||
}
|
||||
#searchform input[type=text]:focus {
|
||||
width: 130px;
|
||||
padding-left: 32px;
|
||||
color: #000;
|
||||
background-color: #fff;
|
||||
cursor: auto;
|
||||
}
|
||||
#searchform input:-moz-placeholder {
|
||||
color: transparent;
|
||||
}
|
||||
#searchform input::-webkit-input-placeholder {
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
input[type=text] {
|
||||
width: 100%;
|
||||
border: 0px;
|
||||
margin: 5px 5px 5px 5px;
|
||||
background-color: #626262;
|
||||
|
||||
-webkit-border-radius: 0.5em;
|
||||
-moz-border-radius: 0.5em;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
input[type=text]:focus {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
|
||||
Begin footer CSS
|
||||
|
||||
*/
|
||||
|
||||
|
||||
.footer-distributed{
|
||||
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
font: normal 16px sans-serif;
|
||||
|
||||
padding: 45px 50px;
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-left p{
|
||||
color: #8f9296;
|
||||
font-size: 12px;
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
/* Footer links */
|
||||
|
||||
.footer-distributed p.footer-links{
|
||||
font-size:14px;
|
||||
font-weight: bold;
|
||||
color: #ffffff;
|
||||
margin: 0 0 10px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.footer-distributed p.footer-links a{
|
||||
display:inline-block;
|
||||
line-height: 1.8;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-right{
|
||||
float: right;
|
||||
margin-top: 6px;
|
||||
max-width: 180px;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-right a{
|
||||
display: inline-block;
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
background-color: #33383b;
|
||||
border-radius: 2px;
|
||||
|
||||
font-size: 20px;
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
line-height: 35px;
|
||||
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
|
||||
.footer-distributed .footer-left,
|
||||
.footer-distributed .footer-right{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-right{
|
||||
float: none;
|
||||
margin: 0 auto 20px;
|
||||
}
|
||||
|
||||
.footer-distributed .footer-left p.footer-links{
|
||||
line-height: 1.8;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Table CSS inspired by the pen
|
||||
'Simple Responsive Table in CSS' by Matt Smith
|
||||
|
||||
https://codepen.io/AllThingsSmitty/pen/MyqmdM
|
||||
|
||||
*/
|
||||
|
||||
table {
|
||||
border: 1px solid #ccc;
|
||||
border-collapse: collapse;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
table-layout: fixed;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
table caption {
|
||||
font-size: 2.5em;
|
||||
margin: .5em 0 .75em;
|
||||
}
|
||||
|
||||
table tr {
|
||||
background-color: #f8f8f8;
|
||||
border: 1px solid #ddd;
|
||||
padding: .35em;
|
||||
}
|
||||
|
||||
table th,
|
||||
table td {
|
||||
padding: .625em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
table th {
|
||||
font-size: .85em;
|
||||
letter-spacing: .1em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
table {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
table caption {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
table thead {
|
||||
border: none;
|
||||
clip: rect(0 0 0 0);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
table tr {
|
||||
border-bottom: 3px solid #ddd;
|
||||
display: block;
|
||||
margin-bottom: .625em;
|
||||
}
|
||||
|
||||
table td {
|
||||
border-bottom: 1px solid #ddd;
|
||||
display: block;
|
||||
font-size: .8em;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
table td::before {
|
||||
/*
|
||||
* aria-label has no advantage, it won't be read inside a table
|
||||
content: attr(aria-label);
|
||||
*/
|
||||
content: attr(data-label);
|
||||
float: left;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
table td:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
}
|
||||
BIN
docs/assets/images/06021610415014349--j#463433.pdf
Executable file
BIN
docs/assets/images/2000_er_cad_gid_mode#4FE92C.pdf
Executable file
BIN
docs/assets/images/2000_ijcga_murphy_mount_gable.pdf
Executable file
BIN
docs/assets/images/2001_geochimica_dutrow_travis_gable_henry.pdf
Executable file
BIN
docs/assets/images/2001_gji_lowman_king_gable.pdf
Executable file
BIN
docs/assets/images/2003_epsl_king_lowman_gable.pdf
Executable file
BIN
docs/assets/images/2003_gji_lowman_king_gable.pdf
Executable file
BIN
docs/assets/images/2003_jch_tseng_soll_gable_turin_bussod.pdf
Executable file
BIN
docs/assets/images/2003_jch_viswanathan_robinson_gable_carey.pdf
Executable file
BIN
docs/assets/images/2003_jgr_guest_schubert_gable.pdf
Executable file
BIN
docs/assets/images/2004_g3_lowman_king_gable.pdf
Executable file
BIN
docs/assets/images/2004_pepi_guest_schubert_gable.pdf
Executable file
BIN
docs/assets/images/2005_groundwater_bower_gable_zyvoloski.pdf
Executable file
BIN
docs/assets/images/2005_wrr_zhang_person_paola_gable_wen_davis.pdf
Executable file
BIN
docs/assets/images/2009_computers_and_geosciences_v35_iss9_blessent.pdf
Executable file
BIN
docs/assets/images/2d_connect1.gif
Executable file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
docs/assets/images/2d_connect1_tn.gif
Executable file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
docs/assets/images/2d_connect1a.gif
Executable file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
docs/assets/images/2d_connect1a_tn.gif
Executable file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
docs/assets/images/2d_connect1b.gif
Executable file
|
After Width: | Height: | Size: 32 KiB |
BIN
docs/assets/images/2d_connect1b_tn.gif
Executable file
|
After Width: | Height: | Size: 9.1 KiB |
BIN
docs/assets/images/2d_connect2.gif
Executable file
|
After Width: | Height: | Size: 32 KiB |
BIN
docs/assets/images/2d_connect2_tn.gif
Executable file
|
After Width: | Height: | Size: 9.1 KiB |
BIN
docs/assets/images/2d_connect_pts.png
Executable file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
docs/assets/images/2d_connect_tri.png
Executable file
|
After Width: | Height: | Size: 20 KiB |
BIN
docs/assets/images/2pager-massage-20000.pdf
Executable file
BIN
docs/assets/images/3d_uz_grid_sw_small.jpg
Executable file
|
After Width: | Height: | Size: 39 KiB |
BIN
docs/assets/images/463433.pdf
Executable file
BIN
docs/assets/images/99.gif
Executable file
|
After Width: | Height: | Size: 5.2 MiB |
BIN
docs/assets/images/BORON.pdf
Executable file
BIN
docs/assets/images/Commercial_agreement_lagrit.pdf
Executable file
BIN
docs/assets/images/Government_agreement_lagrit.pdf
Executable file
BIN
docs/assets/images/Image219.gif
Executable file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
docs/assets/images/Image220.gif
Executable file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
docs/assets/images/Image221.gif
Executable file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
docs/assets/images/Image222.gif
Executable file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
docs/assets/images/Image223.gif
Executable file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
docs/assets/images/Image224.gif
Executable file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
docs/assets/images/Image225.gif
Executable file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
docs/assets/images/Image226.gif
Executable file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
docs/assets/images/Image227.gif
Executable file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
docs/assets/images/Image228.gif
Executable file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
docs/assets/images/Image229.gif
Executable file
|
After Width: | Height: | Size: 47 KiB |
BIN
docs/assets/images/Image230.gif
Executable file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
docs/assets/images/Image230.jpg
Executable file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
docs/assets/images/Image231.gif
Executable file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
docs/assets/images/Image231.jpg
Executable file
|
After Width: | Height: | Size: 22 KiB |
BIN
docs/assets/images/Image232.gif
Executable file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
docs/assets/images/Image232.jpg
Executable file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
docs/assets/images/Image233.gif
Executable file
|
After Width: | Height: | Size: 955 B |
BIN
docs/assets/images/Image234.gif
Executable file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
docs/assets/images/Image235.gif
Executable file
|
After Width: | Height: | Size: 982 B |
BIN
docs/assets/images/Image236.gif
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
docs/assets/images/Image237.gif
Executable file
|
After Width: | Height: | Size: 865 B |
BIN
docs/assets/images/Image238.gif
Executable file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
docs/assets/images/Image239.gif
Executable file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
docs/assets/images/Image240.gif
Executable file
|
After Width: | Height: | Size: 934 B |
BIN
docs/assets/images/Image241.gif
Executable file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
docs/assets/images/Image242.gif
Executable file
|
After Width: | Height: | Size: 989 B |
BIN
docs/assets/images/Image243.gif
Executable file
|
After Width: | Height: | Size: 882 B |
BIN
docs/assets/images/Image244.gif
Executable file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
docs/assets/images/Image245.gif
Executable file
|
After Width: | Height: | Size: 832 B |
BIN
docs/assets/images/Image246.gif
Executable file
|
After Width: | Height: | Size: 839 B |
BIN
docs/assets/images/Image247.gif
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
docs/assets/images/Image248.gif
Executable file
|
After Width: | Height: | Size: 893 B |
BIN
docs/assets/images/Image249.gif
Executable file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
docs/assets/images/Image250.gif
Executable file
|
After Width: | Height: | Size: 964 B |
BIN
docs/assets/images/Image251.gif
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
docs/assets/images/Image252.gif
Executable file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
docs/assets/images/Image253.gif
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
docs/assets/images/Image254.gif
Executable file
|
After Width: | Height: | Size: 918 B |
BIN
docs/assets/images/Image255.gif
Executable file
|
After Width: | Height: | Size: 847 B |
BIN
docs/assets/images/Image256.gif
Executable file
|
After Width: | Height: | Size: 842 B |
BIN
docs/assets/images/Image257.gif
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
docs/assets/images/Image259.gif
Executable file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
docs/assets/images/Image262.gif
Executable file
|
After Width: | Height: | Size: 814 B |
BIN
docs/assets/images/LaGriT_bright.jpg
Executable file
|
After Width: | Height: | Size: 629 KiB |
BIN
docs/assets/images/MSU96.pdf
Executable file
BIN
docs/assets/images/NGG96.pdf
Executable file
BIN
docs/assets/images/PRL.pdf
Executable file
BIN
docs/assets/images/add_inter.gif
Executable file
|
After Width: | Height: | Size: 33 KiB |
BIN
docs/assets/images/add_inter_tn.gif
Executable file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
docs/assets/images/addmesh_amr1.gif
Executable file
|
After Width: | Height: | Size: 13 KiB |
BIN
docs/assets/images/addmesh_amr1_tn.gif
Executable file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
docs/assets/images/addmesh_amr2.gif
Executable file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
docs/assets/images/addmesh_amr2_tn.gif
Executable file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
docs/assets/images/addmesh_amr3.gif
Executable file
|
After Width: | Height: | Size: 15 KiB |
BIN
docs/assets/images/addmesh_amr3_tn.gif
Executable file
|
After Width: | Height: | Size: 4.8 KiB |