2926 lines
65 KiB
CSS
Executable File
2926 lines
65 KiB
CSS
Executable File
@charset "UTF-8";
|
|
/* Librairies */
|
|
@CHARSET "UTF-8";
|
|
/* All colors of the same type are sorted from the darkest to the brightest */
|
|
/* Main colors */
|
|
/* Flashy hover colors */
|
|
/* Traffic light colors */
|
|
/* Technical colors */
|
|
/* Font size */
|
|
/*!
|
|
* Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
|
|
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
|
*/
|
|
/* FONT PATH
|
|
* -------------------------- */
|
|
@font-face {
|
|
font-family: 'FontAwesome';
|
|
src: url("style/fontawesome-webfont.eot?v=4.2.0");
|
|
src: url("style/fontawesome-webfont.eot?#iefix&v=4.2.0") format("embedded-opentype"), url("style/fontawesome-webfont.woff?v=4.2.0") format("woff"), url("style/fontawesome-webfont.ttf?v=4.2.0") format("truetype"), url("style/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format("svg");
|
|
font-weight: normal;
|
|
font-style: normal; }
|
|
/* line 14, _fa.scss */
|
|
.fa {
|
|
display: inline-block;
|
|
font-family: FontAwesome;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
line-height: 1;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale; }
|
|
|
|
/* makes the font 33% larger relative to the icon container */
|
|
/* line 24, _fa.scss */
|
|
.fa-lg {
|
|
font-size: 1.33333333em;
|
|
line-height: 0.75em;
|
|
vertical-align: -15%; }
|
|
|
|
/* line 29, _fa.scss */
|
|
.fa-2x {
|
|
font-size: 2em; }
|
|
|
|
/* line 32, _fa.scss */
|
|
.fa-3x {
|
|
font-size: 3em; }
|
|
|
|
/* line 35, _fa.scss */
|
|
.fa-4x {
|
|
font-size: 4em; }
|
|
|
|
/* line 38, _fa.scss */
|
|
.fa-5x {
|
|
font-size: 5em; }
|
|
|
|
/* line 41, _fa.scss */
|
|
.fa-fw {
|
|
width: 1.28571429em;
|
|
text-align: center; }
|
|
|
|
/* line 45, _fa.scss */
|
|
.fa-ul {
|
|
padding-left: 0;
|
|
margin-left: 2.14285714em;
|
|
list-style-type: none; }
|
|
|
|
/* line 50, _fa.scss */
|
|
.fa-ul > li {
|
|
position: relative; }
|
|
|
|
/* line 53, _fa.scss */
|
|
.fa-li {
|
|
position: absolute;
|
|
left: -2.14285714em;
|
|
width: 2.14285714em;
|
|
top: 0.14285714em;
|
|
text-align: center; }
|
|
|
|
/* line 60, _fa.scss */
|
|
.fa-li.fa-lg {
|
|
left: -1.85714286em; }
|
|
|
|
/* line 63, _fa.scss */
|
|
.fa-border {
|
|
padding: .2em .25em .15em;
|
|
border: solid 0.08em #eeeeee;
|
|
border-radius: .1em; }
|
|
|
|
/* line 68, _fa.scss */
|
|
.pull-right {
|
|
float: right; }
|
|
|
|
/* line 71, _fa.scss */
|
|
.pull-left {
|
|
float: left; }
|
|
|
|
/* line 74, _fa.scss */
|
|
.fa.pull-left {
|
|
margin-right: .3em; }
|
|
|
|
/* line 77, _fa.scss */
|
|
.fa.pull-right {
|
|
margin-left: .3em; }
|
|
|
|
/* line 80, _fa.scss */
|
|
.fa-spin {
|
|
-webkit-animation: spin 2s infinite linear;
|
|
-moz-animation: spin 2s infinite linear;
|
|
-o-animation: spin 2s infinite linear;
|
|
animation: spin 2s infinite linear; }
|
|
|
|
@-moz-keyframes spin {
|
|
0% {
|
|
-moz-transform: rotate(0deg); }
|
|
100% {
|
|
-moz-transform: rotate(359deg); } }
|
|
@-webkit-keyframes spin {
|
|
0% {
|
|
-webkit-transform: rotate(0deg); }
|
|
100% {
|
|
-webkit-transform: rotate(359deg); } }
|
|
@-o-keyframes spin {
|
|
0% {
|
|
-o-transform: rotate(0deg); }
|
|
100% {
|
|
-o-transform: rotate(359deg); } }
|
|
@keyframes spin {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
transform: rotate(0deg); }
|
|
100% {
|
|
-webkit-transform: rotate(359deg);
|
|
transform: rotate(359deg); } }
|
|
/* line 120, _fa.scss */
|
|
.fa-rotate-90 {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
|
-webkit-transform: rotate(90deg);
|
|
-moz-transform: rotate(90deg);
|
|
-ms-transform: rotate(90deg);
|
|
-o-transform: rotate(90deg);
|
|
transform: rotate(90deg); }
|
|
|
|
/* line 128, _fa.scss */
|
|
.fa-rotate-180 {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
|
-webkit-transform: rotate(180deg);
|
|
-moz-transform: rotate(180deg);
|
|
-ms-transform: rotate(180deg);
|
|
-o-transform: rotate(180deg);
|
|
transform: rotate(180deg); }
|
|
|
|
/* line 136, _fa.scss */
|
|
.fa-rotate-270 {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
|
-webkit-transform: rotate(270deg);
|
|
-moz-transform: rotate(270deg);
|
|
-ms-transform: rotate(270deg);
|
|
-o-transform: rotate(270deg);
|
|
transform: rotate(270deg); }
|
|
|
|
/* line 144, _fa.scss */
|
|
.fa-flip-horizontal {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
|
-webkit-transform: scale(-1, 1);
|
|
-moz-transform: scale(-1, 1);
|
|
-ms-transform: scale(-1, 1);
|
|
-o-transform: scale(-1, 1);
|
|
transform: scale(-1, 1); }
|
|
|
|
/* line 152, _fa.scss */
|
|
.fa-flip-vertical {
|
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
|
-webkit-transform: scale(1, -1);
|
|
-moz-transform: scale(1, -1);
|
|
-ms-transform: scale(1, -1);
|
|
-o-transform: scale(1, -1);
|
|
transform: scale(1, -1); }
|
|
|
|
/* line 160, _fa.scss */
|
|
.fa-stack {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 2em;
|
|
height: 2em;
|
|
line-height: 2em;
|
|
vertical-align: middle; }
|
|
|
|
/* line 168, _fa.scss */
|
|
.fa-stack-1x,
|
|
.fa-stack-2x {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 100%;
|
|
text-align: center; }
|
|
|
|
/* line 175, _fa.scss */
|
|
.fa-stack-1x {
|
|
line-height: inherit; }
|
|
|
|
/* line 178, _fa.scss */
|
|
.fa-stack-2x {
|
|
font-size: 2em; }
|
|
|
|
/* line 181, _fa.scss */
|
|
.fa-inverse {
|
|
color: #ffffff; }
|
|
|
|
/* Font Awesome */
|
|
/* line 3, _fa-custom.scss */
|
|
.fa-inline {
|
|
margin-right: 5px; }
|
|
|
|
/*
|
|
size +0% +10% +20% +30% +40% +50% +60%
|
|
font-size 1em 1.111em 1.222em 1.333em 1.444em 1.555em 1.666em
|
|
line-height 1em 0.917em 0.833em 0.750em 0.666em 0.583em 0.500em
|
|
vertical-align 0% -5% -10% -15% -20% -25% -30%
|
|
*/
|
|
/* line 14, _fa-custom.scss */
|
|
.fa-10 {
|
|
font-size: 1.1111111111111111em;
|
|
line-height: 0.9166666666666666em;
|
|
vertical-align: -5%; }
|
|
|
|
/* line 19, _fa-custom.scss */
|
|
.fa-20, #chat_messages p span.text a.img_box.hidden .banner .button .fa {
|
|
font-size: 1.2222222222222222em;
|
|
line-height: 0.8333333333333333em;
|
|
vertical-align: -10%; }
|
|
|
|
/* line 24, _fa-custom.scss */
|
|
.fa-30 {
|
|
font-size: 1.3333333333333333em;
|
|
line-height: 0.75em;
|
|
vertical-align: -15%; }
|
|
|
|
/* line 29, _fa-custom.scss */
|
|
.fa-40 {
|
|
font-size: 1.4444444444444444em;
|
|
line-height: 0.6666666666666666em;
|
|
vertical-align: -20%; }
|
|
|
|
/* line 34, _fa-custom.scss */
|
|
.fa-60, a.button .fa {
|
|
font-size: 1.6666666666666666em;
|
|
line-height: 0.5em;
|
|
vertical-align: -30%; }
|
|
|
|
/* line 40, _fa-custom.scss */
|
|
.fa-c-c:before, .fa-c-code:before {
|
|
content: "\f121"; }
|
|
|
|
/* line 44, _fa-custom.scss */
|
|
.fa-c-procedure:before, .fa-c-proc:before, .fa-c-p:before {
|
|
content: "\f0cb"; }
|
|
|
|
/* line 48, _fa-custom.scss */
|
|
.fa-c-table:before, .fa-c-t:before {
|
|
content: "\f0ce"; }
|
|
|
|
/* line 52, _fa-custom.scss */
|
|
.fa-c-documentation:before, .fa-c-doc:before, .fa-c-d:before {
|
|
content: "\f02d"; }
|
|
|
|
/* line 56, _fa-custom.scss */
|
|
.fa-c-article:before, .fa-c-art:before, .fa-c-a:before {
|
|
content: "\f1ea"; }
|
|
|
|
/* line 60, _fa-custom.scss */
|
|
.fa-c-note:before {
|
|
content: "\f0fa"; }
|
|
|
|
/* line 64, _fa-custom.scss */
|
|
.fa-c-list:before {
|
|
content: "\f0c2"; }
|
|
|
|
/* line 68, _fa-custom.scss */
|
|
.fa-c-profile:before {
|
|
content: "\f007"; }
|
|
|
|
/* line 72, _fa-custom.scss */
|
|
.fa-c-chat:before {
|
|
content: "\f086"; }
|
|
|
|
/* line 76, _fa-custom.scss */
|
|
.fa-c-news:before {
|
|
content: "\f0e7"; }
|
|
|
|
/* line 80, _fa-custom.scss */
|
|
.fa-c-version:before {
|
|
content: "\f005"; }
|
|
|
|
/* line 84, _fa-custom.scss */
|
|
.fa-c-details:before {
|
|
content: "\f112"; }
|
|
|
|
/* line 88, _fa-custom.scss */
|
|
.fa-c-bug:before {
|
|
content: "\f188"; }
|
|
|
|
/* line 92, _fa-custom.scss */
|
|
.fa-c-date:before {
|
|
content: "\f073"; }
|
|
|
|
/* line 96, _fa-custom.scss */
|
|
.fa-c-git:before {
|
|
content: "\f1d3"; }
|
|
|
|
/* line 100, _fa-custom.scss */
|
|
.fa-c-afk:before {
|
|
content: "\f017"; }
|
|
|
|
/* line 104, _fa-custom.scss */
|
|
.fa-c-comment {
|
|
color: #04357B; }
|
|
|
|
/* line 107, _fa-custom.scss */
|
|
.fa-c-comment:before {
|
|
content: "\f075"; }
|
|
|
|
/* line 111, _fa-custom.scss */
|
|
.fa-c-options:before {
|
|
content: "\f085"; }
|
|
|
|
/* line 115, _fa-custom.scss */
|
|
.fa-c-param:before {
|
|
content: "\f1de"; }
|
|
|
|
/* line 119, _fa-custom.scss */
|
|
.fa-c-wip:before {
|
|
content: "\f013"; }
|
|
|
|
/* line 123, _fa-custom.scss */
|
|
.fa-c-rss:before {
|
|
content: "\f09e"; }
|
|
|
|
/* line 127, _fa-custom.scss */
|
|
.fa-c-logmeout:before, .fa-c-logout:before {
|
|
content: "\f08b"; }
|
|
|
|
/* line 131, _fa-custom.scss */
|
|
.fa-c-fold {
|
|
color: #04357B; }
|
|
|
|
/* line 134, _fa-custom.scss */
|
|
.fa-c-fold:before {
|
|
content: "\f191"; }
|
|
|
|
/* line 138, _fa-custom.scss */
|
|
.fa-c-success:before, .fa-c-ok:before, .available .fa:before {
|
|
content: "\f00c"; }
|
|
|
|
/* line 142, _fa-custom.scss */
|
|
.fa-c-warning {
|
|
color: orange; }
|
|
|
|
/* line 145, _fa-custom.scss */
|
|
.fa-c-warning:before {
|
|
content: "\f071"; }
|
|
|
|
/* line 149, _fa-custom.scss */
|
|
.fa-c-error {
|
|
color: red; }
|
|
|
|
/* line 152, _fa-custom.scss */
|
|
.fa-c-error:before {
|
|
content: "\f071"; }
|
|
|
|
/* line 156, _fa-custom.scss */
|
|
.fa-c-ko {
|
|
color: red; }
|
|
|
|
/* line 159, _fa-custom.scss */
|
|
.fa-c-ko:before, .unavailable .fa:before {
|
|
content: "\f00d"; }
|
|
|
|
/* line 163, _fa-custom.scss */
|
|
.fa-c-search:before {
|
|
content: "\f002"; }
|
|
|
|
/* line 167, _fa-custom.scss */
|
|
.fa-c-welcome:before {
|
|
content: "\f015"; }
|
|
|
|
/* line 171, _fa-custom.scss */
|
|
.fa-c-loading:before {
|
|
content: "\f110"; }
|
|
|
|
/* line 175, _fa-custom.scss */
|
|
.fa-c-edit:before {
|
|
content: "\f040"; }
|
|
|
|
/* line 179, _fa-custom.scss */
|
|
.fa-c-save:before {
|
|
content: "\f0c7"; }
|
|
|
|
/* line 183, _fa-custom.scss */
|
|
.fa-c-raw:before {
|
|
content: "\f15c"; }
|
|
|
|
/* line 187, _fa-custom.scss */
|
|
.fa-c-print:before {
|
|
content: "\f02f"; }
|
|
|
|
/* line 191, _fa-custom.scss */
|
|
.fa-c-share:before {
|
|
content: "\f0ac"; }
|
|
|
|
/* line 195, _fa-custom.scss */
|
|
.fa-c-refresh:before, .fa-c-switch:before {
|
|
content: "\f021"; }
|
|
|
|
/* line 199, _fa-custom.scss */
|
|
.fa-c-plus:before, .fa-c-add:before {
|
|
content: "\f055"; }
|
|
|
|
/* line 203, _fa-custom.scss */
|
|
.fa-c-minus:before, .fa-c-delete:before {
|
|
content: "\f056"; }
|
|
|
|
/* line 207, _fa-custom.scss */
|
|
.fa-c-up:before {
|
|
content: "\f01b"; }
|
|
|
|
/* line 211, _fa-custom.scss */
|
|
.fa-c-down:before {
|
|
content: "\f01a"; }
|
|
|
|
/* line 215, _fa-custom.scss */
|
|
.fa-c-next:before {
|
|
content: "\f054"; }
|
|
|
|
/* line 219, _fa-custom.scss */
|
|
.fa-c-prev:before {
|
|
content: "\f053"; }
|
|
|
|
/* line 223, _fa-custom.scss */
|
|
.fa-c-close:before {
|
|
content: "\f05c"; }
|
|
|
|
/* line 227, _fa-custom.scss */
|
|
.fa-c-desc:before {
|
|
content: "\f05a"; }
|
|
|
|
/* line 231, _fa-custom.scss */
|
|
.fa-c-company:before {
|
|
content: "\f0f7"; }
|
|
|
|
/* line 235, _fa-custom.scss */
|
|
.fa-c-name:before {
|
|
content: "\f02b"; }
|
|
|
|
/* line 239, _fa-custom.scss */
|
|
.fa-c-assignment:before {
|
|
content: "\f0b1"; }
|
|
|
|
/* line 243, _fa-custom.scss */
|
|
.fa-c-lock:before {
|
|
content: ""; }
|
|
|
|
/* line 246, _fa-custom.scss */
|
|
.fa-c-unlock:before {
|
|
content: "\f09c"; }
|
|
|
|
/* line 250, _fa-custom.scss */
|
|
.fa-c-search:before {
|
|
content: "\f002"; }
|
|
|
|
/* line 254, _fa-custom.scss */
|
|
.fa-c-mail:before {
|
|
content: "\f0e0"; }
|
|
|
|
/* line 258, _fa-custom.scss */
|
|
.fa-c-upcoming:before {
|
|
content: "\f135"; }
|
|
|
|
/* line 262, _fa-custom.scss */
|
|
.fa-c-changelog:before {
|
|
content: "\f0d0"; }
|
|
|
|
/* line 266, _fa-custom.scss */
|
|
.fa-c-checked:before {
|
|
content: "\f046"; }
|
|
|
|
/* line 270, _fa-custom.scss */
|
|
.fa-c-unchecked:before {
|
|
content: "\f096"; }
|
|
|
|
/* line 274, _fa-custom.scss */
|
|
.fa-c-kpi:before {
|
|
content: "\f0e4"; }
|
|
|
|
/* line 278, _fa-custom.scss */
|
|
.fa-c-file-xls, .fa-c-file-xlsx {
|
|
color: #247648; }
|
|
|
|
/* line 281, _fa-custom.scss */
|
|
.fa-c-file-xls:before, .fa-c-file-xlsx:before {
|
|
content: "\f1c3"; }
|
|
|
|
/* line 285, _fa-custom.scss */
|
|
.fa-c-file-doc, .fa-c-file-docx {
|
|
color: #2B5796; }
|
|
|
|
/* line 288, _fa-custom.scss */
|
|
.fa-c-file-doc:before, .fa-c-file-docx:before {
|
|
content: "\f1c2"; }
|
|
|
|
/* line 292, _fa-custom.scss */
|
|
.fa-c-file-ppt, .fa-c-file-pptx {
|
|
color: #D04423; }
|
|
|
|
/* line 295, _fa-custom.scss */
|
|
.fa-c-file-ppt:before, .fa-c-file-pptx:before {
|
|
content: "\f1c4"; }
|
|
|
|
/* line 299, _fa-custom.scss */
|
|
.fa-c-file-pdf {
|
|
color: #D20F0B; }
|
|
|
|
/* line 302, _fa-custom.scss */
|
|
.fa-c-file-pdf:before {
|
|
content: "\f1c1"; }
|
|
|
|
/* line 306, _fa-custom.scss */
|
|
.fa-c-file-zip:before {
|
|
content: "\f1c6"; }
|
|
|
|
/* line 310, _fa-custom.scss */
|
|
.fa-c-file-png:before, .fa-c-file-gif:before, .fa-c-file-jpg:before, .fa-c-file-jpeg:before {
|
|
content: "\f1c5"; }
|
|
|
|
/* line 314, _fa-custom.scss */
|
|
.fa-c-image:before {
|
|
content: "\f03e"; }
|
|
|
|
/* line 318, _fa-custom.scss */
|
|
.fa-c-on:before, .fa-c-1:before {
|
|
content: "\f205"; }
|
|
|
|
/* line 321, _fa-custom.scss */
|
|
.fa-c-off:before, .fa-c-0:before {
|
|
content: "\f204"; }
|
|
|
|
/* line 325, _fa-custom.scss */
|
|
.fa-c-ban:before {
|
|
content: "\f05e"; }
|
|
|
|
/* line 1, _lightbox.scss */
|
|
.lightboxOverlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 9999;
|
|
background-color: white;
|
|
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
|
|
opacity: 0.8;
|
|
display: none; }
|
|
|
|
/* line 12, _lightbox.scss */
|
|
.lightbox {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 10000;
|
|
text-align: center;
|
|
line-height: 0;
|
|
font-weight: normal; }
|
|
|
|
/* line 22, _lightbox.scss */
|
|
.lightbox .lb-image {
|
|
display: block;
|
|
height: auto;
|
|
max-width: inherit;
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px; }
|
|
|
|
/* line 33, _lightbox.scss */
|
|
.lightbox a img {
|
|
border: none; }
|
|
|
|
/* line 37, _lightbox.scss */
|
|
.lb-outerContainer {
|
|
position: relative;
|
|
background-color: #04357B;
|
|
*zoom: 1;
|
|
width: 250px;
|
|
height: 250px;
|
|
margin: 0 auto;
|
|
-webkit-border-radius: 4px;
|
|
-moz-border-radius: 4px;
|
|
-ms-border-radius: 4px;
|
|
-o-border-radius: 4px;
|
|
border-radius: 4px; }
|
|
|
|
/* line 51, _lightbox.scss */
|
|
.lb-outerContainer:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both; }
|
|
|
|
/* line 57, _lightbox.scss */
|
|
.lb-container {
|
|
padding: 4px; }
|
|
|
|
/* line 61, _lightbox.scss */
|
|
.lb-loader {
|
|
position: absolute;
|
|
top: 43%;
|
|
left: 0;
|
|
height: 25%;
|
|
width: 100%;
|
|
text-align: center;
|
|
line-height: 0; }
|
|
|
|
/* line 71, _lightbox.scss */
|
|
.lb-cancel {
|
|
display: block;
|
|
width: 32px;
|
|
height: 32px;
|
|
margin: 0 auto;
|
|
font-size: 32px;
|
|
color: #88B2F0; }
|
|
|
|
/* line 80, _lightbox.scss */
|
|
.lb-nav {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
z-index: 10; }
|
|
|
|
/* line 89, _lightbox.scss */
|
|
.lb-container > .nav {
|
|
left: 0; }
|
|
|
|
/* line 93, _lightbox.scss */
|
|
.lb-nav a {
|
|
outline: none;
|
|
background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }
|
|
|
|
/* line 98, _lightbox.scss */
|
|
.lb-prev, .lb-next {
|
|
height: 100%;
|
|
cursor: pointer;
|
|
display: block; }
|
|
|
|
/* line 104, _lightbox.scss */
|
|
.lb-nav a.lb-prev {
|
|
width: 34%;
|
|
left: 0;
|
|
float: left;
|
|
text-align: left;
|
|
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
|
|
opacity: 0;
|
|
-webkit-transition: opacity 0.6s;
|
|
-moz-transition: opacity 0.6s;
|
|
-o-transition: opacity 0.6s;
|
|
transition: opacity 0.6s; }
|
|
|
|
/* line 117, _lightbox.scss */
|
|
.lb-nav a.lb-prev:hover {
|
|
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
|
opacity: 1; }
|
|
|
|
/* line 122, _lightbox.scss */
|
|
.lb-nav a.lb-next {
|
|
width: 64%;
|
|
right: 0;
|
|
float: right;
|
|
text-align: right;
|
|
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
|
|
opacity: 0;
|
|
-webkit-transition: opacity 0.6s;
|
|
-moz-transition: opacity 0.6s;
|
|
-o-transition: opacity 0.6s;
|
|
transition: opacity 0.6s; }
|
|
|
|
/* line 135, _lightbox.scss */
|
|
.lb-nav a.lb-next:hover {
|
|
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
|
opacity: 1; }
|
|
|
|
/* line 140, _lightbox.scss */
|
|
.lb-prev .fa, .lb-next .fa {
|
|
position: relative;
|
|
top: 50%;
|
|
font-size: 45px;
|
|
-webkit-transform: translateY(-50%);
|
|
-ms-transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
color: #04357B;
|
|
padding: 0 20px; }
|
|
|
|
/* line 151, _lightbox.scss */
|
|
.lb-prev .fa {
|
|
text-shadow: -1px 2px 1px #88B2F0; }
|
|
|
|
/* line 155, _lightbox.scss */
|
|
.lb-next .fa {
|
|
text-shadow: 1px 1px 1px #88B2F0; }
|
|
|
|
/* line 159, _lightbox.scss */
|
|
.lb-dataContainer {
|
|
margin: 0 auto;
|
|
padding-top: 5px;
|
|
*zoom: 1;
|
|
width: 100%;
|
|
-moz-border-radius-bottomleft: 4px;
|
|
-webkit-border-bottom-left-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
-moz-border-radius-bottomright: 4px;
|
|
-webkit-border-bottom-right-radius: 4px;
|
|
border-bottom-right-radius: 4px; }
|
|
|
|
/* line 172, _lightbox.scss */
|
|
.lb-dataContainer:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both; }
|
|
|
|
/* line 178, _lightbox.scss */
|
|
.lb-data {
|
|
padding: 0 4px;
|
|
color: #04357B; }
|
|
|
|
/* line 183, _lightbox.scss */
|
|
.lb-data .lb-details {
|
|
width: 85%;
|
|
float: left;
|
|
text-align: left;
|
|
line-height: 1.1em; }
|
|
|
|
/* line 190, _lightbox.scss */
|
|
.lb-data .lb-caption {
|
|
font-size: 13px;
|
|
font-weight: bold;
|
|
line-height: 1em; }
|
|
|
|
/* line 196, _lightbox.scss */
|
|
.lb-data .lb-number {
|
|
display: block;
|
|
clear: left;
|
|
padding-bottom: 1em;
|
|
font-size: 12px;
|
|
color: #04357B; }
|
|
|
|
/* line 204, _lightbox.scss */
|
|
.lb-data .lb-close {
|
|
display: block;
|
|
float: right;
|
|
width: 30px;
|
|
height: 30px;
|
|
font-size: 30px;
|
|
color: #04357B;
|
|
text-align: right;
|
|
outline: none;
|
|
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
|
|
opacity: 0.7;
|
|
-webkit-transition: opacity 0.2s;
|
|
-moz-transition: opacity 0.2s;
|
|
-o-transition: opacity 0.2s;
|
|
transition: opacity 0.2s; }
|
|
|
|
/* line 221, _lightbox.scss */
|
|
.lb-data .lb-close:hover {
|
|
cursor: pointer;
|
|
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
|
opacity: 1; }
|
|
|
|
/* Fonts */
|
|
@font-face {
|
|
font-family: 'Databap';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local("Databap"), url(style/databap_normal_normal.woff) format("woff"); }
|
|
@font-face {
|
|
font-family: 'Databap';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
src: local("Databap Bold"), local("Databap-Bold"), url(style/databap_normal_bold.woff) format("woff"); }
|
|
@font-face {
|
|
font-family: 'Databap';
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
src: local("Databap Italic"), local("Databap-Italic"), url(style/databap_italic_normal.woff) format("woff"); }
|
|
@font-face {
|
|
font-family: 'Databap';
|
|
font-style: italic;
|
|
font-weight: 700;
|
|
src: local("Databap Bold Italic"), local("Databap-BoldItalic"), url(style/databap_italic_bold.woff) format("woff"); }
|
|
/* Standard Tags */
|
|
/* line 30, _common.scss */
|
|
body, html {
|
|
background: #FFFFFF;
|
|
font-family: 'Databap', sans-serif;
|
|
color: #04357B;
|
|
background: #04357B;
|
|
padding: 0;
|
|
margin: 0;
|
|
min-width: 1024px; }
|
|
|
|
/* line 40, _common.scss */
|
|
table {
|
|
border: none;
|
|
background: none;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 0;
|
|
border-spacing: 0; }
|
|
|
|
/* line 49, _common.scss */
|
|
table td {
|
|
padding: 0; }
|
|
|
|
/* line 53, _common.scss */
|
|
input, textarea, select {
|
|
font-family: 'Databap', sans-serif;
|
|
font-size: 11px;
|
|
background: #FFFFFF;
|
|
border: none; }
|
|
|
|
/* line 59, _common.scss */
|
|
input[type=text], input[type=password] {
|
|
padding: 5px;
|
|
width: 200px; }
|
|
|
|
/* line 64, _common.scss */
|
|
input[type=button]:hover, input[type=submit]:hover, input[type=password]:hover, input[type=text]:hover, input[type=text]:focus {
|
|
background-color: #EFAB00; }
|
|
|
|
/* line 68, _common.scss */
|
|
input[disabled="disabled"], textarea[disabled="disabled"], input:disabled, textarea:disabled {
|
|
background-color: #88B2F0; }
|
|
|
|
/* line 72, _common.scss */
|
|
input[disabled="disabled"]:hover, textarea[disabled="disabled"]:hover, input:disabled:hover, textarea:disabled:hover {
|
|
background-color: #88B2F0; }
|
|
|
|
/* line 76, _common.scss */
|
|
button::-moz-focus-inner, input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
|
|
border: none; }
|
|
|
|
/* line 80, _common.scss */
|
|
input[type=button], .clickable {
|
|
cursor: pointer; }
|
|
|
|
/* line 84, _common.scss */
|
|
iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
background: #D9E5F2;
|
|
border: none; }
|
|
|
|
/* line 93, _common.scss */
|
|
select {
|
|
background: #FFFFFF;
|
|
padding: 5px;
|
|
color: #04357B;
|
|
margin: 0; }
|
|
|
|
/* line 100, _common.scss */
|
|
textarea {
|
|
min-height: 30px; }
|
|
|
|
/* line 104, _common.scss */
|
|
input, select, textarea, h1, h2, h3, h4, p, a {
|
|
color: #04357B; }
|
|
|
|
/* line 108, _common.scss */
|
|
p {
|
|
margin: 0;
|
|
padding: 0; }
|
|
|
|
/* line 113, _common.scss */
|
|
a, a:visited {
|
|
text-decoration: none; }
|
|
|
|
/* line 117, _common.scss */
|
|
a:active, a:focus, input:active, input:focus {
|
|
outline: none; }
|
|
|
|
/* line 121, _common.scss */
|
|
img {
|
|
border: none; }
|
|
|
|
/* Functions */
|
|
/* Classes */
|
|
/* line 147, _common.scss */
|
|
.round_top {
|
|
-moz-border-radius: 10px 10px 0 0;
|
|
-webkit-border-radius: 10px 10px 0 0;
|
|
-khtml-border-radius: 10px 10px 0 0;
|
|
border-radius: 10px 10px 0 0; }
|
|
|
|
/* line 150, _common.scss */
|
|
.round_bottom {
|
|
-moz-border-radius: 0 0 10px 10px;
|
|
-webkit-border-radius: 0 0 10px 10px;
|
|
-khtml-border-radius: 0 0 10px 10px;
|
|
border-radius: 0 0 10px 10px; }
|
|
|
|
/* line 153, _common.scss */
|
|
.round_right {
|
|
-moz-border-radius: 0 10px 10px 0;
|
|
-webkit-border-radius: 0 10px 10px 0;
|
|
-khtml-border-radius: 0 10px 10px 0;
|
|
border-radius: 0 10px 10px 0; }
|
|
|
|
/* line 156, _common.scss */
|
|
.round_left {
|
|
-moz-border-radius: 10px 0 0 10px;
|
|
-webkit-border-radius: 10px 0 0 10px;
|
|
-khtml-border-radius: 10px 0 0 10px;
|
|
border-radius: 10px 0 0 10px; }
|
|
|
|
/* line 159, _common.scss */
|
|
.round_bottom_left {
|
|
-moz-border-radius: 0 0 0 10px;
|
|
-webkit-border-radius: 0 0 0 10px;
|
|
-khtml-border-radius: 0 0 0 10px;
|
|
border-radius: 0 0 0 10px; }
|
|
|
|
/* line 162, _common.scss */
|
|
.round {
|
|
-moz-border-radius: 10px 10px 10px 10px;
|
|
-webkit-border-radius: 10px 10px 10px 10px;
|
|
-khtml-border-radius: 10px 10px 10px 10px;
|
|
border-radius: 10px 10px 10px 10px; }
|
|
|
|
/* line 165, _common.scss */
|
|
.tiny_round {
|
|
-moz-border-radius: 5px 5px 5px 5px;
|
|
-webkit-border-radius: 5px 5px 5px 5px;
|
|
-khtml-border-radius: 5px 5px 5px 5px;
|
|
border-radius: 5px 5px 5px 5px; }
|
|
|
|
/* line 168, _common.scss */
|
|
.tiny_top_right {
|
|
-moz-border-radius: 5px 0 5px 5px;
|
|
-webkit-border-radius: 5px 0 5px 5px;
|
|
-khtml-border-radius: 5px 0 5px 5px;
|
|
border-radius: 5px 0 5px 5px; }
|
|
|
|
/* line 172, _common.scss */
|
|
.inc_border {
|
|
box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box; }
|
|
|
|
/* line 178, _common.scss */
|
|
.loading {
|
|
font-size: 20px;
|
|
margin: 5px;
|
|
text-align: center; }
|
|
|
|
/* line 184, _common.scss */
|
|
.error, .warning, .success {
|
|
margin: 10px 0;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
padding: 3px;
|
|
-moz-border-radius: 5px;
|
|
-webkit-border-radius: 5px;
|
|
-khtml-border-radius: 5px;
|
|
border-radius: 5px;
|
|
clear: both; }
|
|
|
|
/* line 196, _common.scss */
|
|
.error a, .warning a, .success a {
|
|
text-decoration: underline; }
|
|
|
|
/* line 200, _common.scss */
|
|
.error, .error a {
|
|
color: red;
|
|
border-color: red;
|
|
font-size: 13px;
|
|
font-weight: bold; }
|
|
|
|
/* line 207, _common.scss */
|
|
.warning, .warning a {
|
|
color: orange;
|
|
border-color: orange;
|
|
font-size: 13px;
|
|
font-style: italic; }
|
|
|
|
/* line 214, _common.scss */
|
|
.success, .success a {
|
|
color: green;
|
|
border-color: green;
|
|
font-size: 13px; }
|
|
|
|
/* line 220, _common.scss */
|
|
.default_text {
|
|
color: #88B2F0 !important; }
|
|
|
|
/* line 224, _common.scss */
|
|
a.button {
|
|
padding: 7px;
|
|
margin-right: 5px;
|
|
background: #D9E5F2;
|
|
font-size: 13px;
|
|
cursor: pointer;
|
|
/*position:relative;*/
|
|
display: inline-block; }
|
|
|
|
/* line 233, _common.scss */
|
|
a.button:hover {
|
|
background-color: #EFAB00; }
|
|
|
|
/* line 236, _common.scss */
|
|
a.button:active {
|
|
background-color: #04357B;
|
|
color: #FFFFFF; }
|
|
|
|
/* line 241, _common.scss */
|
|
a.button .fa {
|
|
margin-right: 5px; }
|
|
|
|
/* line 246, _common.scss */
|
|
a.button.no_text .fa {
|
|
margin-right: 0; }
|
|
|
|
/* line 250, _common.scss */
|
|
a.button.no_bg, a.button.no_bg:hover {
|
|
background: none;
|
|
color: #FFFFFF;
|
|
margin: 0.33333em 0;
|
|
/* to compensate the fa-60 */
|
|
padding: 0; }
|
|
|
|
/* line 256, _common.scss */
|
|
a.button.no_bg:hover .fa {
|
|
color: #EFAB00; }
|
|
|
|
/* line 260, _common.scss */
|
|
a.button.strong .value {
|
|
font-weight: bold; }
|
|
|
|
/* line 264, _common.scss */
|
|
a.button.inverse {
|
|
background-color: #04357B;
|
|
color: #88B2F0; }
|
|
|
|
/* line 269, _common.scss */
|
|
a.button.inverse:hover {
|
|
background-color: #EFAB00;
|
|
color: #04357B; }
|
|
|
|
/* line 274, _common.scss */
|
|
a.button.heavy {
|
|
border-width: 2px;
|
|
font-weight: bold; }
|
|
|
|
/* line 279, _common.scss */
|
|
a.button.gimmespace {
|
|
margin-left: 10px;
|
|
margin-right: 10px; }
|
|
|
|
/* line 284, _common.scss */
|
|
.addr {
|
|
cursor: text; }
|
|
|
|
/* line 288, _common.scss */
|
|
.addr:hover {
|
|
background-color: #FFFFFF; }
|
|
|
|
/* line 292, _common.scss */
|
|
.maximized {
|
|
width: 100%; }
|
|
|
|
/* line 296, _common.scss */
|
|
.righty {
|
|
text-align: right; }
|
|
|
|
/* line 300, _common.scss */
|
|
.glue-right {
|
|
float: right; }
|
|
|
|
/* line 304, _common.scss */
|
|
.lefty {
|
|
text-align: left; }
|
|
|
|
/* line 308, _common.scss */
|
|
.side_margins {
|
|
margin: 0 12px 10px; }
|
|
|
|
/* line 312, _common.scss */
|
|
a.internal_link {
|
|
text-decoration: underline;
|
|
font-style: normal;
|
|
background: #88B2F0;
|
|
padding: 1px 8px 1px 5px;
|
|
margin: 0; }
|
|
|
|
/* line 319, _common.scss */
|
|
a.internal_link:visited, a.external_link:visited {
|
|
color: grey; }
|
|
|
|
/* line 322, _common.scss */
|
|
a.internal_link span.type {
|
|
text-transform: capitalize; }
|
|
|
|
/* line 325, _common.scss */
|
|
a[href^="table"].internal_link span.item {
|
|
text-transform: uppercase; }
|
|
|
|
/* line 329, _common.scss */
|
|
.author_box {
|
|
padding: 5px 10px;
|
|
color: #04357B;
|
|
font-style: italic;
|
|
font-size: 11px; }
|
|
|
|
/* line 335, _common.scss */
|
|
.author_box:nth-child(odd) {
|
|
background: #FFFFFF; }
|
|
|
|
/* line 338, _common.scss */
|
|
.author_box:nth-child(even) {
|
|
background: #f2f5f9; }
|
|
|
|
/* line 341, _common.scss */
|
|
.author_box:hover a {
|
|
color: #EFAB00; }
|
|
|
|
/* line 345, _common.scss */
|
|
.author_box a {
|
|
background: none;
|
|
padding: 0;
|
|
display: block;
|
|
width: 100%; }
|
|
|
|
/* line 352, _common.scss */
|
|
.author_box i.fa-30 {
|
|
vertical-align: -5%; }
|
|
|
|
/* line 356, _common.scss */
|
|
.author_box span.description {
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
font-size: 13px; }
|
|
|
|
/* line 362, _common.scss */
|
|
.author_box span.rank {
|
|
font-weight: bold;
|
|
margin-left: 10px; }
|
|
|
|
/* line 367, _common.scss */
|
|
.standalone .author_box {
|
|
margin-top: 10px; }
|
|
|
|
/* line 371, _common.scss */
|
|
.hide, .mobile {
|
|
display: none; }
|
|
|
|
/* Step Box */
|
|
/* line 377, _common.scss */
|
|
.step_box {
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
padding: 10px;
|
|
background: #D9E5F2;
|
|
color: #04357B; }
|
|
|
|
/* line 384, _common.scss */
|
|
.step_box:nth-child(even) {
|
|
background: #f2f5f9; }
|
|
|
|
/* line 388, _common.scss */
|
|
.step_box input, .step_box textarea, .step_box select, .step_box .read.textarea, .step_box .read.input {
|
|
margin-top: 10px;
|
|
background: #FFFFFF;
|
|
font-size: 13px;
|
|
border-width: 1px; }
|
|
|
|
/* line 394, _common.scss */
|
|
.step_box input:disabled, .step_box textarea:disabled, .step_box select:disabled, .step_box input:hover:disabled, .step_box textarea:hover:disabled, .step_box select:hover:disabled {
|
|
background-color: #FFFFFF; }
|
|
|
|
/* line 397, _common.scss */
|
|
.step_box input[type=text], .step_box textarea, .step_box .read.textarea, .step_box .read.input {
|
|
width: 100%; }
|
|
|
|
/* line 400, _common.scss */
|
|
.step_box textarea, .step_box .read.textarea {
|
|
height: 200px;
|
|
padding: 5px;
|
|
background: #FFFFFF; }
|
|
|
|
/* line 405, _common.scss */
|
|
.step_box .read.textarea, .step_box .read.input {
|
|
border-color: #88B2F0;
|
|
font-weight: bold; }
|
|
|
|
/* line 409, _common.scss */
|
|
.step_box .read.textarea {
|
|
background-color: #D9E5F2; }
|
|
|
|
/* line 412, _common.scss */
|
|
.step_box:nth-child(even) .read.textarea {
|
|
background-color: #f2f5f9; }
|
|
|
|
/* line 415, _common.scss */
|
|
.step_box .read.input {
|
|
background-color: #88B2F0;
|
|
padding-left: 0; }
|
|
|
|
/* line 420, _common.scss */
|
|
.step_box .step_nb_box, .step_box .step_box_title {
|
|
border-bottom: 1px solid #04357B;
|
|
padding: 0; }
|
|
|
|
/* Scrollbar */
|
|
/* line 427, _common.scss */
|
|
.scrollbar_box {
|
|
position: relative;
|
|
height: 0px;
|
|
overflow: hidden; }
|
|
|
|
/* line 433, _common.scss */
|
|
.scrollbar_box .scrollbar_subbox {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%; }
|
|
|
|
/* line 440, _common.scss */
|
|
.scrollbar {
|
|
position: relative;
|
|
float: right;
|
|
width: 15px;
|
|
margin-left: 5px; }
|
|
|
|
/* line 447, _common.scss */
|
|
.scrollbar .thumb, .scrollbar .thumb .end {
|
|
background-color: #04357B;
|
|
width: 13px; }
|
|
|
|
/* line 451, _common.scss */
|
|
.scrollbar .track {
|
|
background-color: #88B2F0;
|
|
height: 100%;
|
|
width: 13px;
|
|
position: relative;
|
|
padding: 0; }
|
|
|
|
/* line 458, _common.scss */
|
|
.scrollbar .thumb {
|
|
position: absolute;
|
|
top: 0;
|
|
overflow: hidden; }
|
|
|
|
/* line 463, _common.scss */
|
|
.scrollbar .thumb .end {
|
|
overflow: hidden;
|
|
height: 20px; }
|
|
|
|
/* line 468, _common.scss */
|
|
.disable {
|
|
display: none; }
|
|
|
|
/* Uploader */
|
|
/* line 474, _common.scss */
|
|
.uploader_box {
|
|
position: relative;
|
|
width: 100%; }
|
|
|
|
/* line 479, _common.scss */
|
|
.uploader_droparea {
|
|
position: absolute;
|
|
top: -10px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
height: 210px;
|
|
z-index: 2;
|
|
background: #FFFFFF;
|
|
text-align: center; }
|
|
|
|
/* line 491, _common.scss */
|
|
.uploader_droparea-active {
|
|
background: #EFAB00; }
|
|
|
|
/* line 494, _common.scss */
|
|
.uploader_droparea span {
|
|
display: block;
|
|
position: absolute;
|
|
top: 50%;
|
|
width: 100%;
|
|
margin-top: -8px;
|
|
font-size: 16px; }
|
|
|
|
/* line 503, _common.scss */
|
|
.uploader_buffer {
|
|
width: 100%;
|
|
height: 8px; }
|
|
|
|
/* line 508, _common.scss */
|
|
.uploader_list {
|
|
/*margin:0;*/
|
|
margin-top: 0;
|
|
padding: 0;
|
|
list-style: none; }
|
|
|
|
/* line 513, _common.scss */
|
|
.uploader_list li {
|
|
margin: 0 0 10px 10px; }
|
|
|
|
/* line 517, _common.scss */
|
|
.uploader_item_file, .uploader_item_loading, .uploader_item_size, .uploader_item_cancel, .uploader_item_failed {
|
|
margin-right: 5px; }
|
|
|
|
/* line 521, _common.scss */
|
|
.uploader_item_size, .uploader_item_cancel {
|
|
font-size: 11px;
|
|
font-weight: normal; }
|
|
|
|
/* line 526, _common.scss */
|
|
a.uploader_item_cancel {
|
|
text-decoration: underline;
|
|
color: #04357B; }
|
|
|
|
/* line 531, _common.scss */
|
|
.uploader_box .image_description {
|
|
border-width: 1px;
|
|
padding: 3px 5px;
|
|
background: #FFFFFF; }
|
|
|
|
/* line 538, _common.scss */
|
|
.uploader_box .image_action {
|
|
font-size: 11px; }
|
|
|
|
/* line 542, _common.scss */
|
|
.uploader_box .image_action input {
|
|
width: 200px;
|
|
margin: 0; }
|
|
|
|
/* line 547, _common.scss */
|
|
.uploader_item_failed_notice {
|
|
display: none; }
|
|
|
|
/* line 550, _common.scss */
|
|
.uploader_item_failed .uploader_item_failed_notice {
|
|
display: inline; }
|
|
|
|
/* line 554, _common.scss */
|
|
.uploader_item_failed {
|
|
color: red; }
|
|
|
|
/* line 558, _common.scss */
|
|
.uploader_item_success .fa-c-delete:hover, .uploader_item_cancel .fa-c-delete:hover {
|
|
color: #EFAB00; }
|
|
|
|
/* Container */
|
|
/* line 11, databap.scss */
|
|
#container {
|
|
background: #04357B;
|
|
padding: 10px 10px 1px 1px; }
|
|
|
|
/* Header */
|
|
/* line 18, databap.scss */
|
|
#header {
|
|
padding: 0 0 10px 0;
|
|
margin: 0; }
|
|
/* line 22, databap.scss */
|
|
#header table td.cell {
|
|
width: 50%;
|
|
height: 35px;
|
|
margin: 0; }
|
|
/* line 28, databap.scss */
|
|
#header .logo {
|
|
position: absolute;
|
|
top: 9px;
|
|
width: 200px;
|
|
height: 35px;
|
|
margin-left: 36px; }
|
|
/* line 36, databap.scss */
|
|
#header #query, #header #search_btn_submit {
|
|
height: 25px;
|
|
color: #04357B;
|
|
border: none;
|
|
float: right;
|
|
padding: 0 10px;
|
|
font-size: 15px; }
|
|
/* line 45, databap.scss */
|
|
#header #query {
|
|
background: #FFFFFF;
|
|
width: 250px; }
|
|
/* line 50, databap.scss */
|
|
#header #search_btn_submit {
|
|
background: #88B2F0;
|
|
height: 20px;
|
|
padding-top: 5px; }
|
|
/* line 56, databap.scss */
|
|
#header #search_btn_submit:hover {
|
|
background-color: #EFAB00; }
|
|
|
|
/* Main */
|
|
/* line 63, databap.scss */
|
|
#main_container {
|
|
background: #88B2F0;
|
|
margin-left: 35px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
border: 10px solid #88B2F0; }
|
|
|
|
/* line 71, databap.scss */
|
|
#page_title .side_margins {
|
|
margin: 0 0 10px 0; }
|
|
|
|
/* line 75, databap.scss */
|
|
#page_title h1 {
|
|
padding: 2px 0;
|
|
/*To fit the icon in*/
|
|
margin: 0;
|
|
width: 100%;
|
|
font-family: 'Databap', sans-serif;
|
|
font-size: 32px;
|
|
line-height: 32px;
|
|
font-style: italic;
|
|
font-weight: bold; }
|
|
|
|
/* line 86, databap.scss */
|
|
#page_title h1 #title_feedback {
|
|
text-align: right; }
|
|
|
|
/* line 90, databap.scss */
|
|
#title_feedback .feedback {
|
|
margin: 0;
|
|
padding: 0 5px;
|
|
border: none;
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 14px; }
|
|
|
|
/* line 99, databap.scss */
|
|
#main {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden; }
|
|
|
|
/* Menu */
|
|
/* line 107, databap.scss */
|
|
#menu {
|
|
position: absolute;
|
|
width: auto;
|
|
padding: 10px 0;
|
|
z-index: 10; }
|
|
/* line 113, databap.scss */
|
|
#menu #menu_title {
|
|
position: relative;
|
|
padding: 0;
|
|
margin: 21px 0 0 0;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
font-weight: bold; }
|
|
/* line 124, databap.scss */
|
|
#menu #menu_box ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
text-align: left;
|
|
font-size: 20px;
|
|
list-style: none; }
|
|
/* line 132, databap.scss */
|
|
#menu #menu_box ul li {
|
|
padding: 10px 10px 10px 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
cursor: pointer;
|
|
line-height: 20px;
|
|
height: 20px;
|
|
font-size: 20px;
|
|
text-transform: capitalize; }
|
|
/* line 143, databap.scss */
|
|
#menu #menu_box ul li:FIRST-CHILD {
|
|
padding-top: 0; }
|
|
/* line 147, databap.scss */
|
|
#menu #menu_box ul li:FIRST-CHILD a {
|
|
padding-top: 8px; }
|
|
/* line 151, databap.scss */
|
|
#menu #menu_box ul li a {
|
|
padding: 10px 0 10px 0;
|
|
color: #88B2F0;
|
|
display: inline-block;
|
|
width: 100%; }
|
|
/* line 158, databap.scss */
|
|
#menu #menu_box ul li:hover a {
|
|
color: #EFAB00; }
|
|
/* line 162, databap.scss */
|
|
#menu #menu_box a.active {
|
|
background: #88B2F0;
|
|
color: #EFAB00;
|
|
padding-right: 10px;
|
|
-moz-border-radius: 10px 10px 10px 10px;
|
|
-webkit-border-radius: 10px 10px 10px 10px;
|
|
-khtml-border-radius: 10px 10px 10px 10px;
|
|
border-radius: 10px 10px 10px 10px; }
|
|
/* line 169, databap.scss */
|
|
#menu #menu_box ul li a span {
|
|
display: none; }
|
|
/* line 173, databap.scss */
|
|
#menu #menu_box a.active span {
|
|
display: inline-block;
|
|
text-transform: capitalize;
|
|
background: #04357B; }
|
|
/* line 179, databap.scss */
|
|
#menu #menu_box ul li a.active .fa {
|
|
margin-right: 10px; }
|
|
/* line 184, databap.scss */
|
|
#menu #menu_box ul li#rss_ln a {
|
|
color: #04357B; }
|
|
|
|
/* Welcome */
|
|
/* line 191, databap.scss */
|
|
#welcome #welcome_container {
|
|
background: #D9E5F2;
|
|
padding: 10px; }
|
|
|
|
/* line 196, databap.scss */
|
|
#welcome p.welcome_text {
|
|
font-weight: bold;
|
|
padding-top: 0;
|
|
padding-bottom: 5px;
|
|
border-bottom: 1px solid #04357B;
|
|
margin-bottom: 20px; }
|
|
|
|
/* line 204, databap.scss */
|
|
#welcome #welcome_container ul {
|
|
margin-top: 0px; }
|
|
|
|
/* line 208, databap.scss */
|
|
#welcome #welcome_container ul li {
|
|
font-size: 13px;
|
|
margin-top: 10px;
|
|
font-weight: bold; }
|
|
|
|
/* line 213, databap.scss */
|
|
#welcome #welcome_container ul li .fa-li {
|
|
top: 0.242857em; }
|
|
|
|
/* line 217, databap.scss */
|
|
#welcome #welcome_container ul li ul {
|
|
font-size: 11px;
|
|
margin-top: 2px; }
|
|
|
|
/* line 222, databap.scss */
|
|
#welcome #welcome_container ul li ul li {
|
|
font-weight: normal; }
|
|
|
|
/* line 226, databap.scss */
|
|
#welcome #welcome_container ul li:FIRST-CHILD, #welcome #welcome_container ul li ul li {
|
|
margin-top: 0px; }
|
|
|
|
/* line 230, databap.scss */
|
|
#welcome span.milestone {
|
|
margin-left: 5px;
|
|
padding: 2px 5px;
|
|
font-weight: bold;
|
|
border: 1px solid #04357B;
|
|
cursor: pointer;
|
|
background: #FFFFFF;
|
|
background: -moz-linear-gradient(top, #FFFFFF 15%, #88B2F0 85%);
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #FFFFFF), color-stop(85%, #88B2F0));
|
|
background: -webkit-linear-gradient(top, #FFFFFF 15%, #88B2F0 85%);
|
|
background: -o-linear-gradient(top, #FFFFFF 15%, #88B2F0 85%);
|
|
background: -ms-linear-gradient(top, #FFFFFF 15%, #88B2F0 85%);
|
|
background: linear-gradient(to bottom, #FFFFFF 15%, #88B2F0 85%);
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$col_none', endColorstr='$col_main_2',GradientType=0 ); }
|
|
|
|
/* line 245, databap.scss */
|
|
#welcome span.milestone:hover {
|
|
color: #EFAB00;
|
|
border-color: #EFAB00;
|
|
background: -moz-linear-gradient(top, #FFFFFF 15%, #F2E1B5 85%);
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #FFFFFF), color-stop(85%, #F2E1B5));
|
|
background: -webkit-linear-gradient(top, #FFFFFF 15%, #F2E1B5 85%);
|
|
background: -o-linear-gradient(top, #FFFFFF 15%, #F2E1B5 85%);
|
|
background: -ms-linear-gradient(top, #FFFFFF 15%, #F2E1B5 85%);
|
|
background: linear-gradient(to bottom, #FFFFFF 15%, #F2E1B5 85%);
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$col_none', endColorstr='$col_hover_2',GradientType=0 ); }
|
|
|
|
/* line 256, databap.scss */
|
|
#welcome span.milestone .fa {
|
|
margin-right: 5px; }
|
|
|
|
/* line 260, databap.scss */
|
|
#welcome a {
|
|
text-decoration: underline; }
|
|
|
|
/* Add Code */
|
|
/* line 266, databap.scss */
|
|
#add_code_container, #add_code_container input {
|
|
font-size: 13px; }
|
|
|
|
/* line 270, databap.scss */
|
|
#add_code_container table {
|
|
text-align: left; }
|
|
|
|
/* line 274, databap.scss */
|
|
#add_code_container table tr td {
|
|
padding: 5px 5px 5px 0; }
|
|
|
|
/* line 278, databap.scss */
|
|
#add_code_container table tr td:first-child {
|
|
font-weight: bold; }
|
|
|
|
/* line 282, databap.scss */
|
|
#add_code_container table tr td.last {
|
|
padding-bottom: 0px; }
|
|
|
|
/* line 286, databap.scss */
|
|
#add_code_container textarea, #edit_container textarea {
|
|
margin: 0 -10px;
|
|
padding: 10px 6px 10px 10px;
|
|
width: 100%;
|
|
min-height: 100px;
|
|
height: 300px;
|
|
font-family: Courier New, Courier;
|
|
color: #000000;
|
|
font-size: 13px; }
|
|
|
|
/* line 297, databap.scss */
|
|
#add_code_container .loggued {
|
|
margin: 0 12px; }
|
|
|
|
/* line 301, databap.scss */
|
|
#add_code_container input[type=text] {
|
|
width: 400px;
|
|
padding: 5px;
|
|
color: #04357B; }
|
|
|
|
/* line 307, databap.scss */
|
|
#auth_company_container {
|
|
display: none; }
|
|
|
|
/* line 311, databap.scss */
|
|
#add_code_container #add_code_btn {
|
|
margin-top: 10px;
|
|
float: left; }
|
|
|
|
/* line 316, databap.scss */
|
|
#add_code_container input:hover, #add_code_container input[type=text]:focus {
|
|
background-color: #EFAB00; }
|
|
|
|
/* line 320, databap.scss */
|
|
#link_result, #available_phrase {
|
|
display: none;
|
|
margin-left: 15px;
|
|
padding: 5px;
|
|
font-size: 13px; }
|
|
|
|
/* line 327, databap.scss */
|
|
#link_result {
|
|
color: #04357B; }
|
|
|
|
/* line 331, databap.scss */
|
|
#available_phrase {
|
|
display: none; }
|
|
|
|
/* line 335, databap.scss */
|
|
#available_phrase.available {
|
|
color: green;
|
|
background: #B2D6B2; }
|
|
|
|
/* line 339, databap.scss */
|
|
#available_phrase.unavailable {
|
|
color: red;
|
|
background: #F6D3D3; }
|
|
|
|
/* read code */
|
|
/* line 346, databap.scss */
|
|
#reader {
|
|
margin: 0;
|
|
padding: 0; }
|
|
|
|
/* line 351, databap.scss */
|
|
#reader #code_menu {
|
|
padding: 0;
|
|
margin: 0; }
|
|
|
|
/* line 356, databap.scss */
|
|
#code_container .code_reader {
|
|
margin: 10px 0 0 0;
|
|
padding: 0;
|
|
background: #b5b5c6;
|
|
background: #04357B; }
|
|
|
|
/* line 363, databap.scss */
|
|
#reader #code_container .code_reader {
|
|
margin: 0; }
|
|
|
|
/* line 367, databap.scss */
|
|
#code_container .code_reader ol li ::selection {
|
|
background: #306897;
|
|
color: #FFFFFF; }
|
|
|
|
/* line 371, databap.scss */
|
|
#code_container .code_reader ol li ::-moz-selection {
|
|
background: #306897;
|
|
color: #FFFFFF; }
|
|
|
|
/* line 376, databap.scss */
|
|
#code_container .code_reader .author_box {
|
|
background: #04357B;
|
|
border: none;
|
|
color: #FFFFFF; }
|
|
|
|
/* line 382, databap.scss */
|
|
#code_container .code_reader .author_box * {
|
|
color: #FFFFFF; }
|
|
|
|
/* line 386, databap.scss */
|
|
#code_container .code_reader .tab_left {
|
|
/* margin: -13px 0; */
|
|
margin: 0;
|
|
padding: 0 0 0 19px;
|
|
background: #f7efde;
|
|
border: none; }
|
|
|
|
/* line 394, databap.scss */
|
|
#code_container .code_reader ol {
|
|
border-left: 1px solid #848484;
|
|
background: #FFFFFF;
|
|
margin: 0;
|
|
/*list-style-type:decimal-leading-zero;*/ }
|
|
|
|
/* line 401, databap.scss */
|
|
#code_container .code_reader ol li {
|
|
/*margin:-1px 0 0 0;*/
|
|
margin: 0;
|
|
padding: 0;
|
|
border-left: 1px dotted #398c8c;
|
|
background: #FFFFFF;
|
|
font-family: Courier New, Courier;
|
|
font-size: 11px;
|
|
line-height: 12px;
|
|
text-indent: 20px;
|
|
color: #398c8c; }
|
|
|
|
/* line 414, databap.scss */
|
|
#code_container .code_reader ol li:first-child, #code_container .code_reader ol li:first-child span.expand_line {
|
|
padding-top: 5px; }
|
|
|
|
/* line 418, databap.scss */
|
|
#code_container .code_reader ol li.bigline, #code_container .code_reader ol li.bigline span.expand_line {
|
|
padding-top: 5px;
|
|
padding-bottom: 5px; }
|
|
|
|
/* line 423, databap.scss */
|
|
#code_container .code_reader ol li:hover, #code_container .code_reader ol li.code_hover {
|
|
background-color: #D9E5F2; }
|
|
|
|
/* line 427, databap.scss */
|
|
#code_container .code_reader .core {
|
|
color: #0000ff;
|
|
text-transform: uppercase; }
|
|
|
|
/* line 428, databap.scss */
|
|
#code_container .code_reader .comment {
|
|
color: #848484; }
|
|
|
|
/* line 429, databap.scss */
|
|
#code_container .code_reader .number {
|
|
color: #319cff; }
|
|
|
|
/* line 430, databap.scss */
|
|
#code_container .code_reader .operator {
|
|
color: #840084; }
|
|
|
|
/* line 431, databap.scss */
|
|
#code_container .code_reader .string {
|
|
color: #4aa518;
|
|
text-transform: uppercase; }
|
|
|
|
/* line 432, databap.scss */
|
|
#code_container .code_reader .string span {
|
|
color: #4aa518; }
|
|
|
|
/* override syntax coloring in strings */
|
|
/* line 433, databap.scss */
|
|
#code_container .code_reader .field-symbol {
|
|
color: #848484; }
|
|
|
|
/* line 434, databap.scss */
|
|
#code_container .code_reader .line {
|
|
color: #848484; }
|
|
|
|
/* line 435, databap.scss */
|
|
#code_container .code_reader .line-number, #code_container .code_reader .line-post-number {
|
|
color: #398c8c; }
|
|
|
|
/* line 436, databap.scss */
|
|
#code_container .code_reader .global {
|
|
color: #000000; }
|
|
|
|
/* line 437, databap.scss */
|
|
#code_container .code_reader .expand {
|
|
font-weight: bold; }
|
|
|
|
/* line 438, databap.scss */
|
|
#code_container .code_reader .comment span.code_part {
|
|
color: #04357B;
|
|
font-weight: bold;
|
|
text-transform: capitalize; }
|
|
|
|
/* line 444, databap.scss */
|
|
#code_container .code_reader pre {
|
|
white-space: pre-wrap;
|
|
/* css-3 */
|
|
white-space: -moz-pre-wrap !important;
|
|
/* Mozilla, since 1999 */
|
|
white-space: -pre-wrap;
|
|
/* Opera 4-6 */
|
|
white-space: -o-pre-wrap;
|
|
/* Opera 7 */
|
|
word-wrap: break-word;
|
|
/* Internet Explorer 5.5+ */
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none; }
|
|
|
|
/* Default code line */
|
|
/* line 456, databap.scss */
|
|
#code_container .code_reader ol li span {
|
|
color: #000000; }
|
|
|
|
/* line 459, databap.scss */
|
|
#code_container .code_reader ol li span.code, ol li span.comment {
|
|
font-size: 13px;
|
|
margin-left: 15px; }
|
|
|
|
/* line 463, databap.scss */
|
|
#code_container .code_reader ol li span.comment span, #code_container .code_reader ol li span.code span.comment {
|
|
color: #848484;
|
|
text-transform: none;
|
|
font-weight: normal; }
|
|
|
|
/* line 469, databap.scss */
|
|
#code_container .code_reader ol li a.internal_link, #code_container .code_reader ol li a.external_link {
|
|
color: #04357B;
|
|
border: none;
|
|
font-weight: normal;
|
|
text-indent: 0;
|
|
text-decoration: underline; }
|
|
|
|
/* line 476, databap.scss */
|
|
#code_container .code_reader ol li a.internal_link span {
|
|
color: #04357B;
|
|
font-weight: normal; }
|
|
|
|
/* line 480, databap.scss */
|
|
#code_container .code_reader a.internal_link:hover, #code_container .code_reader a.internal_link:hover span {
|
|
color: #EFAB00; }
|
|
|
|
/* line 484, databap.scss */
|
|
#code_container .code_reader ol li span.hide span {
|
|
color: #848484; }
|
|
|
|
/* Expanding */
|
|
/* line 489, databap.scss */
|
|
#code_container .code_reader ol li span.expand_line {
|
|
border-left: 1px solid #424242;
|
|
color: #424242;
|
|
text-align: center;
|
|
width: 5px;
|
|
position: relative; }
|
|
|
|
/* line 497, databap.scss */
|
|
#reader #code_container .code_reader ol li span.expand_line span:before {
|
|
content: '';
|
|
position: absolute;
|
|
margin-left: -21px; }
|
|
|
|
/* line 503, databap.scss */
|
|
#reader #code_container .code_reader ol li span.expand_line input {
|
|
position: absolute;
|
|
margin: 3px 0 0 -4px;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
z-index: 1000;
|
|
background: #FFFFFF 0 0 no-repeat;
|
|
width: 9px;
|
|
height: 9px; }
|
|
|
|
/* line 514, databap.scss */
|
|
#reader #code_container .code_reader ol li span.expand_line input.minus {
|
|
background-image: url("images/expand_minus.png"); }
|
|
|
|
/* line 518, databap.scss */
|
|
#reader #code_container .code_reader ol li span.expand_line input.plus {
|
|
background-image: url("images/expand_plus.png"); }
|
|
|
|
/* line 522, databap.scss */
|
|
#reader #code_container .code_reader ol li span.expand_line input:hover {
|
|
background-position: 0 -9px; }
|
|
|
|
/* line 526, databap.scss */
|
|
#edit_container {
|
|
display: none;
|
|
margin-bottom: 10px; }
|
|
|
|
/* line 531, databap.scss */
|
|
#edit_container textarea {
|
|
margin-top: 10px;
|
|
margin-bottom: 20px;
|
|
height: 200px; }
|
|
|
|
/* line 537, databap.scss */
|
|
#edit_container #edit_btn {
|
|
margin-left: -10px; }
|
|
|
|
/* Search */
|
|
/* line 543, databap.scss */
|
|
#search .summary {
|
|
margin: 10px 0 0px 5px;
|
|
font-size: 13px;
|
|
font-style: italic; }
|
|
|
|
/* line 549, databap.scss */
|
|
#search .code_reader:hover .tab_left,
|
|
#search .code_reader:hover ol,
|
|
#search .code_reader:hover li {
|
|
background-color: #88B2F0;
|
|
cursor: pointer; }
|
|
|
|
/* line 556, databap.scss */
|
|
#search .step_box {
|
|
margin-bottom: 10px; }
|
|
|
|
/* line 560, databap.scss */
|
|
#search #repeat_query {
|
|
padding-bottom: 6px; }
|
|
|
|
/* line 564, databap.scss */
|
|
#search #sub_button_box {
|
|
display: inline; }
|
|
|
|
/* Profile */
|
|
/* line 570, databap.scss */
|
|
#profile #avatar {
|
|
width: 96px;
|
|
height: 96px;
|
|
background: url("images/avatar_96.png") 0 0 no-repeat;
|
|
float: left; }
|
|
|
|
/* line 577, databap.scss */
|
|
#profile #profile_company_logo {
|
|
width: 24px;
|
|
height: 24px;
|
|
vertical-align: middle;
|
|
margin-right: 5px; }
|
|
|
|
/* line 584, databap.scss */
|
|
#profile .user {
|
|
margin-left: 110px;
|
|
/* 96 (picture) + 10 (margin) + 4 (borders) */
|
|
padding: 10px 16px;
|
|
height: 76px;
|
|
/* 96 (picture height) - 20 (padding) */
|
|
background: #D9E5F2; }
|
|
|
|
/* line 591, databap.scss */
|
|
#profile .user .fa {
|
|
margin-right: 2px; }
|
|
|
|
/* line 595, databap.scss */
|
|
#profile .user p {
|
|
font-size: 16px;
|
|
line-height: 25px; }
|
|
|
|
/* line 600, databap.scss */
|
|
#profile .user p span {
|
|
font-weight: bold; }
|
|
|
|
/* line 604, databap.scss */
|
|
#profile .user_history_title {
|
|
margin: 30px 0 0 0;
|
|
padding: 0 10px 0 25px;
|
|
font-size: 25px;
|
|
color: #04357B;
|
|
border-bottom: 2px solid #04357B;
|
|
background: url(images/logo_25.png) 0 1px no-repeat; }
|
|
|
|
/* line 613, databap.scss */
|
|
#profile #history_subbox {
|
|
margin-top: 10px; }
|
|
|
|
/* line 617, databap.scss */
|
|
#profile #user_history p.history_line {
|
|
padding: 5px 10px;
|
|
font-size: 13px; }
|
|
|
|
/* line 621, databap.scss */
|
|
#profile #user_history p.history_line:nth-child(odd) {
|
|
background: #FFFFFF; }
|
|
|
|
/* line 624, databap.scss */
|
|
#profile #user_history p.history_line:nth-child(even) {
|
|
background: #f2f5f9; }
|
|
|
|
/* line 627, databap.scss */
|
|
#profile #user_history p.history_line:FIRST-CHILD {
|
|
-moz-border-radius-topleft: 10px;
|
|
-moz-border-radius-topright: 10px;
|
|
-khtml-border-top-left-radius: 10px;
|
|
-khtml-border-top-right-radius: 10px;
|
|
-webkit-border-top-left-radius: 10px;
|
|
-webkit-border-top-right-radius: 10px;
|
|
border-top-left-radius: 10px;
|
|
border-top-right-radius: 10px; }
|
|
|
|
/* line 637, databap.scss */
|
|
#profile #user_history p.history_line:LAST-CHILD {
|
|
-moz-border-radius-bottomright: 10px;
|
|
-moz-border-radius-bottomleft: 10px;
|
|
-khtml-border-bottom-left-radius: 10px;
|
|
-khtml-border-bottom-right-radius: 10px;
|
|
-webkit-border-bottom-right-radius: 10px;
|
|
-webkit-border-bottom-left-radius: 10px;
|
|
border-bottom-right-radius: 10px;
|
|
border-bottom-left-radius: 10px; }
|
|
|
|
/* line 647, databap.scss */
|
|
#profile #user_history p.history_line .fa {
|
|
margin-left: 5px;
|
|
margin-right: 5px; }
|
|
|
|
/* line 652, databap.scss */
|
|
#profile #user_history a {
|
|
text-decoration: underline; }
|
|
|
|
/* Article */
|
|
/* line 658, databap.scss */
|
|
#article .loading_box {
|
|
font-size: 16px; }
|
|
|
|
/* Chat */
|
|
/* line 664, databap.scss */
|
|
#chat #chat_room {
|
|
margin-right: 175px;
|
|
/* 165px + 10px (margin-left) */
|
|
background: #FFFFFF;
|
|
height: 100%;
|
|
padding: 5px;
|
|
position: relative; }
|
|
|
|
/* line 672, databap.scss */
|
|
.g_white_transparent {
|
|
background: #000000 url("images/grad_white_transparent_50.png") repeat-x top;
|
|
/*-o-background-size: 100% 100%;
|
|
-moz-background-size: 100% 100%;
|
|
-webkit-background-size: 100% 100%;
|
|
background-size: 100% 100%;
|
|
background: -moz-linear-gradient(
|
|
top,
|
|
$col_none,
|
|
rgba(255,255,255,0)
|
|
);
|
|
background: -webkit-gradient(
|
|
linear,
|
|
left top, left bottom,
|
|
from($col_none),
|
|
to(rgba(255,255,255,0))
|
|
);*/ }
|
|
|
|
/* line 691, databap.scss */
|
|
#chat #chat_room #chat_shades {
|
|
position: absolute;
|
|
width: 0;
|
|
left: 18px;
|
|
margin-top: 5px;
|
|
height: 50px;
|
|
background: url("images/grad_white_transparent_50.png") repeat-x top; }
|
|
|
|
/* line 700, databap.scss */
|
|
#chat #chat_room #chat_container {
|
|
clear: both;
|
|
padding-bottom: 5px; }
|
|
|
|
/* line 704, databap.scss */
|
|
#chat #chat_room #chat_container #chat_messages_box {
|
|
position: relative;
|
|
height: 20px;
|
|
overflow: hidden;
|
|
background: #FFFFFF url("images/sap_gold_332.jpg") 50% 50% no-repeat; }
|
|
|
|
/* line 711, databap.scss */
|
|
#chat #chat_room #chat_container #chat_messages {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
list-style: none;
|
|
background: rgba(255, 255, 255, 0.7);
|
|
width: 100%; }
|
|
|
|
/* line 720, databap.scss */
|
|
.noSelect {
|
|
user-select: none;
|
|
-o-user-select: none;
|
|
-moz-user-select: none;
|
|
-khtml-user-select: none;
|
|
-webkit-user-select: none; }
|
|
|
|
/* line 724, databap.scss */
|
|
#chat_messages p {
|
|
color: #04357B; }
|
|
|
|
/* line 727, databap.scss */
|
|
#chat_messages p.U {
|
|
/*background-color:white;*/ }
|
|
|
|
/* line 730, databap.scss */
|
|
#chat_messages p.A, #chat_messages p.PA, #chat_messages p.E, #chat_messages p.PE, #chat_messages p.N {
|
|
background-color: #D9E5F2;
|
|
font-style: italic; }
|
|
|
|
/* line 734, databap.scss */
|
|
#chat_messages p.C {
|
|
color: #CCC;
|
|
text-decoration: none;
|
|
font-style: normal; }
|
|
|
|
/* line 739, databap.scss */
|
|
#chat_messages p span.time {
|
|
color: #EFAB00;
|
|
font-size: 9px;
|
|
font-style: normal; }
|
|
|
|
/* line 744, databap.scss */
|
|
#chat_messages p a.user, #chat_messages p span.console {
|
|
font-size: 10px;
|
|
font-weight: bold;
|
|
color: #04357B; }
|
|
|
|
/* line 749, databap.scss */
|
|
#chat_messages p a.user {
|
|
margin-left: 5px; }
|
|
|
|
/* line 752, databap.scss */
|
|
#chat_messages p a.user:hover {
|
|
text-decoration: underline; }
|
|
|
|
/* line 755, databap.scss */
|
|
#chat_messages p span.text {
|
|
margin-left: 5px;
|
|
font-size: 11px; }
|
|
|
|
/* line 759, databap.scss */
|
|
#chat_messages p span.action {
|
|
font-style: italic; }
|
|
|
|
/* line 762, databap.scss */
|
|
#chat_messages p span.text a {
|
|
text-decoration: underline;
|
|
font-style: normal; }
|
|
|
|
/* line 766, databap.scss */
|
|
#chat_messages p span.text a:visited {
|
|
color: grey; }
|
|
|
|
/* line 769, databap.scss */
|
|
#chat_messages p span.highlight {
|
|
color: red; }
|
|
|
|
/* line 772, databap.scss */
|
|
#chat_messages p span.chan_link {
|
|
font-weight: bold; }
|
|
|
|
/* line 775, databap.scss */
|
|
#chat_messages p span.news {
|
|
font-weight: bold; }
|
|
|
|
/* line 779, databap.scss */
|
|
#chat_messages p img.proxy {
|
|
vertical-align: middle;
|
|
border: 1px solid #04357B;
|
|
padding: 5px;
|
|
background: #FFFFFF; }
|
|
|
|
/* line 785, databap.scss */
|
|
#chat_messages p span.text a.img_box {
|
|
position: relative; }
|
|
|
|
/* line 788, databap.scss */
|
|
#chat_messages p .banner {
|
|
position: absolute;
|
|
display: none;
|
|
z-index: 1000;
|
|
right: 0px;
|
|
top: 0;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: rgba(4, 53, 123, 0.7); }
|
|
|
|
/* line 799, databap.scss */
|
|
#chat_messages p .banner a.button {
|
|
margin: calc(0.33333em + 5px) 6px;
|
|
float: right; }
|
|
|
|
/* line 803, databap.scss */
|
|
#chat_messages p span.text a.img_box:hover .banner, #chat_messages p span.text a.img_box.hidden .banner {
|
|
display: inherit; }
|
|
|
|
/* line 807, databap.scss */
|
|
#chat_messages p .banner .banner_title {
|
|
color: #FFFFFF;
|
|
font-size: 13px;
|
|
line-height: 25px;
|
|
margin: 0 0 0 6px;
|
|
padding: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: inline-block; }
|
|
|
|
/* line 819, databap.scss */
|
|
#chat_messages p span.text a.img_box.hidden {
|
|
position: inherit; }
|
|
|
|
/* line 822, databap.scss */
|
|
#chat_messages p span.text a.img_box.hidden img {
|
|
display: none; }
|
|
|
|
/* line 825, databap.scss */
|
|
#chat_messages p span.text a.img_box.hidden .banner {
|
|
top: 0 !important;
|
|
position: inherit;
|
|
background: none; }
|
|
|
|
/* line 830, databap.scss */
|
|
#chat_messages p span.text a.img_box.hidden .banner_title {
|
|
display: none; }
|
|
|
|
/* line 833, databap.scss */
|
|
#chat_messages p span.text a.img_box.hidden .banner .button {
|
|
color: #04357B;
|
|
margin: 0;
|
|
padding: 0;
|
|
float: none; }
|
|
|
|
/* line 843, databap.scss */
|
|
#chat_messages .help {
|
|
border: 1px dashed #666666;
|
|
padding: 0 0 5px 0;
|
|
margin: 5px 0;
|
|
background: #FFFFFF; }
|
|
|
|
/* line 849, databap.scss */
|
|
#chat_messages .help p {
|
|
padding: 0 5px;
|
|
color: #666666;
|
|
font-size: 10px; }
|
|
|
|
/* line 854, databap.scss */
|
|
#chat_messages .help p.title {
|
|
font-size: 11px;
|
|
padding: 3px 5px;
|
|
border-bottom: 1px dashed #666666;
|
|
letter-spacing: 0;
|
|
display: inline-block;
|
|
width: calc(50% - 10px);
|
|
float: left; }
|
|
|
|
/* line 863, databap.scss */
|
|
#chat_messages .help p.subtitle {
|
|
margin-top: 5px;
|
|
font-size: 10px; }
|
|
|
|
/* line 867, databap.scss */
|
|
#chat_messages .help p.item {
|
|
margin-top: 1px; }
|
|
|
|
/* line 870, databap.scss */
|
|
#chat_messages .help p.subtitle span {
|
|
font-style: italic;
|
|
border-bottom: 1px dashed #666666; }
|
|
|
|
/* line 874, databap.scss */
|
|
#chat_messages .help p span.key {
|
|
font-weight: bold;
|
|
margin-right: 5px; }
|
|
|
|
/* Chat - Input */
|
|
/* line 883, databap.scss */
|
|
#chat #chat_input {
|
|
background: #D9E5F2;
|
|
color: #94BDF9;
|
|
overflow: hidden; }
|
|
/* line 889, databap.scss */
|
|
#chat #c1_file {
|
|
display: none; }
|
|
/* line 893, databap.scss */
|
|
#chat .uploader_box {
|
|
position: inherit;
|
|
width: auto; }
|
|
/* line 898, databap.scss */
|
|
#chat #upload_img {
|
|
cursor: pointer;
|
|
margin-top: 2px; }
|
|
/* line 902, databap.scss */
|
|
#chat i.fa#upload_img:hover {
|
|
color: #EFAB00; }
|
|
/* line 906, databap.scss */
|
|
#chat #chat_form .uploader_box > * {
|
|
float: left;
|
|
padding: 7px 0px; }
|
|
/* line 911, databap.scss */
|
|
#chat .uploader_droparea {
|
|
background: #D9E5F2;
|
|
height: 100%;
|
|
top: 0; }
|
|
/* line 917, databap.scss */
|
|
#chat .uploader_droparea-active {
|
|
background: #EFAB00;
|
|
color: white; }
|
|
/* line 922, databap.scss */
|
|
#chat #chat_input .fa {
|
|
color: #04357B;
|
|
margin-right: 5px;
|
|
margin-left: 5px; }
|
|
/* line 928, databap.scss */
|
|
#chat #chat_input input#message {
|
|
background: #D9E5F2;
|
|
margin: 0;
|
|
border: none;
|
|
min-width: 200px;
|
|
width: calc(100% - 72px);
|
|
/* 32 icons width * 2 */
|
|
font-size: 13px; }
|
|
/* line 937, databap.scss */
|
|
#chat #chat_input input#message:hover, #chat #chat #chat_input input#message:focus {
|
|
background-color: transparent; }
|
|
|
|
/* Chat - Sidebar */
|
|
/* line 944, databap.scss */
|
|
#chat #sidebar {
|
|
position: absolute;
|
|
right: 0;
|
|
width: 165px; }
|
|
|
|
/* line 950, databap.scss */
|
|
#chat #sidebar div {
|
|
padding: 5px; }
|
|
|
|
/* line 954, databap.scss */
|
|
#chat #sidebar .sidebar_box {
|
|
position: relative;
|
|
font-weight: bold;
|
|
padding: 0;
|
|
margin-bottom: 10px;
|
|
overflow: hidden; }
|
|
|
|
/* line 962, databap.scss */
|
|
#chat #sidebar .sidebar_box_title {
|
|
background-color: #D9E5F2;
|
|
text-align: center;
|
|
font-size: 16px; }
|
|
|
|
/* line 968, databap.scss */
|
|
#chat #sidebar .sidebar_box_content {
|
|
background: #FFFFFF;
|
|
font-size: 10px;
|
|
font-weight: normal; }
|
|
|
|
/* line 974, databap.scss */
|
|
#chat #sidebar .help_paperclip {
|
|
background: #FFFFFF url("images/ms_paperclip_112.jpg") 50% 50% no-repeat;
|
|
height: 109px; }
|
|
|
|
/* line 979, databap.scss */
|
|
#chat #sidebar .sidebar_box_content p {
|
|
padding: 3px 0;
|
|
overflow: hidden; }
|
|
|
|
/* line 984, databap.scss */
|
|
#chat #sidebar .sidebar_box_content p span.key {
|
|
font-weight: bold;
|
|
padding-right: 5px; }
|
|
|
|
/* line 989, databap.scss */
|
|
#chat #sidebar p.connected_user {
|
|
font-size: 13px; }
|
|
|
|
/* line 992, databap.scss */
|
|
#chat #sidebar a.connected_user_logo img {
|
|
vertical-align: middle; }
|
|
|
|
/* line 995, databap.scss */
|
|
#chat #sidebar a.connected_user_name {
|
|
display: inline-block;
|
|
width: calc(100% - 24px - 5px);
|
|
/* logo + right margin */
|
|
font-style: italic;
|
|
font-weight: normal;
|
|
color: #04357B;
|
|
text-decoration: underline;
|
|
margin-left: 5px; }
|
|
|
|
/* line 1004, databap.scss */
|
|
#chat #sidebar a.connected_user:hover {
|
|
color: #EFAB00; }
|
|
|
|
/* line 1008, databap.scss */
|
|
#chat .afk {
|
|
position: absolute;
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
text-shadow: 1px 1px 1px #88B2F0;
|
|
margin-left: -20px;
|
|
margin-top: 2px;
|
|
/* (24 - 20)/2 */ }
|
|
|
|
/* line 1020, databap.scss */
|
|
#chat #chat_chan .tab_bar {
|
|
font-weight: bold;
|
|
margin: 0 0 0 5px;
|
|
/* 165px + the round corner */ }
|
|
|
|
/* line 1025, databap.scss */
|
|
#chat #chat_chan .tab_bar span.chan {
|
|
display: inline-block;
|
|
background-color: #D9E5F2;
|
|
padding: 2px 8px;
|
|
margin-left: 5px;
|
|
color: #04357B;
|
|
font-size: 15px; }
|
|
|
|
/* line 1034, databap.scss */
|
|
#chat #chat_chan .tab_bar span#join_chan {
|
|
padding: 2px;
|
|
border-bottom: #04357B; }
|
|
|
|
/* line 1038, databap.scss */
|
|
#chat #chat_chan .tab_bar span#join_chan:hover #join_chan_button {
|
|
color: #EFAB00; }
|
|
|
|
/* line 1041, databap.scss */
|
|
#chat #chat_chan .tab_bar span.chan:hover, #chat #chat_chan .tab_bar span#join_chan.active {
|
|
background-color: #04357B;
|
|
color: #FFFFFF; }
|
|
|
|
/* line 1045, databap.scss */
|
|
#chat #chat_chan .tab_bar span.chan span.chan_title {
|
|
text-transform: capitalize; }
|
|
|
|
/* line 1048, databap.scss */
|
|
#chat #chat_chan .tab_bar span.chan span.chan_unread {
|
|
font-weight: normal;
|
|
font-style: italic; }
|
|
|
|
/* line 1052, databap.scss */
|
|
#chat #chat_chan .tab_bar a.quit_chan {
|
|
margin-left: 5px;
|
|
color: #04357B; }
|
|
|
|
/* line 1056, databap.scss */
|
|
#chat #chat_chan .tab_bar span.chan.active:hover a.quit_chan {
|
|
color: #04357B; }
|
|
|
|
/* line 1059, databap.scss */
|
|
#chat #chat_chan .tab_bar span.chan:hover a.quit_chan {
|
|
color: #88B2F0; }
|
|
|
|
/* line 1062, databap.scss */
|
|
#chat #chat_chan .tab_bar span.chan a.quit_chan:hover,
|
|
#chat #chat_chan .tab_bar .fa:hover {
|
|
color: #EFAB00; }
|
|
|
|
/* line 1067, databap.scss */
|
|
#chat #chat_chan .tab_bar span#join_chan .hash {
|
|
margin-left: 5px; }
|
|
|
|
/* line 1070, databap.scss */
|
|
#chat #chat_chan .tab_bar span#join_chan input, #chat #chat_chan .tab_bar span#join_chan input:hover {
|
|
border: none;
|
|
font-size: 15px;
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 70px;
|
|
background-color: #04357B;
|
|
color: #FFFFFF;
|
|
font-weight: bold; }
|
|
|
|
/* line 1080, databap.scss */
|
|
#chat #chat_chan .tab_bar span.active, #chat #chat_chan .tab_bar span.active:hover {
|
|
border-bottom-color: #FFFFFF;
|
|
background-color: #FFFFFF;
|
|
color: #000000; }
|
|
|
|
/* line 1086, databap.scss */
|
|
#chat #chat_chan .tab_bar span.light_up {
|
|
background-color: #EFAB00; }
|
|
|
|
/* line 1090, databap.scss */
|
|
#chat #sidebar #news, #chat #sidebar #news p {
|
|
padding: 0; }
|
|
|
|
/* line 1093, databap.scss */
|
|
#chat #sidebar #news .new {
|
|
padding: 6px 5px; }
|
|
|
|
/* line 1096, databap.scss */
|
|
#chat #news .new:nth-child(even) {
|
|
background: #FFFFFF; }
|
|
|
|
/* line 1099, databap.scss */
|
|
#chat #news .new:nth-child(odd) {
|
|
background: #f2f5f9; }
|
|
|
|
/* line 1102, databap.scss */
|
|
#chat #news .new:last-child {
|
|
-moz-border-radius: 0 0 10px 10px;
|
|
-webkit-border-radius: 0 0 10px 10px;
|
|
-khtml-border-radius: 0 0 10px 10px;
|
|
border-radius: 0 0 10px 10px; }
|
|
|
|
/* line 1108, databap.scss */
|
|
#chat #news .new .signature {
|
|
font-size: 0.75em;
|
|
text-align: right; }
|
|
|
|
/* line 1112, databap.scss */
|
|
#chat #news .new .signature .news_time {
|
|
font-style: italic; }
|
|
|
|
/* Options */
|
|
/* line 1118, databap.scss */
|
|
#options .options_box {
|
|
background: #D9E5F2;
|
|
width: calc(50% - 25px);
|
|
float: left;
|
|
margin: 0 10px 10px 0;
|
|
padding: 10px; }
|
|
|
|
/* line 1125, databap.scss */
|
|
#options .options_box:nth-child(even) {
|
|
margin-right: 0; }
|
|
|
|
/* line 1128, databap.scss */
|
|
#options .options_box .loading {
|
|
padding: 10px; }
|
|
|
|
/* line 1132, databap.scss */
|
|
#options .options_box h2 {
|
|
color: #04357B;
|
|
font-size: 20px;
|
|
margin: 0 0 10px 0;
|
|
border-bottom: 2px solid #04357B; }
|
|
|
|
/* line 1139, databap.scss */
|
|
#options .options_box .option_line {
|
|
margin: 5px 0;
|
|
float: left;
|
|
width: 100%; }
|
|
|
|
/* line 1145, databap.scss */
|
|
#options .options_box input[type=text],
|
|
#options .options_box input[type=color],
|
|
#options .options_box input[type=password],
|
|
#options .options_box select,
|
|
#options .options_box .checkbox {
|
|
background: #f2f5f9;
|
|
border-width: 1px;
|
|
font-size: 14px;
|
|
padding: 5px;
|
|
float: right;
|
|
width: calc(50% - 10px); }
|
|
|
|
/* line 1158, databap.scss */
|
|
#options .options_box input[type=color] {
|
|
width: 50%;
|
|
padding: 3px 5px; }
|
|
|
|
/* line 1163, databap.scss */
|
|
#options .options_box .option_line .clear {
|
|
margin-left: 10px;
|
|
float: right;
|
|
clear: inherit;
|
|
color: #04357B; }
|
|
|
|
/* line 1169, databap.scss */
|
|
#options .options_box .option_line .clear + input {
|
|
width: calc(50% - 10px - 30px); }
|
|
|
|
/* line 1173, databap.scss */
|
|
#options .options_box .button {
|
|
float: left;
|
|
clear: both; }
|
|
|
|
/* line 1178, databap.scss */
|
|
#options .options_box select {
|
|
color: #04357B; }
|
|
|
|
/* line 1182, databap.scss */
|
|
#options .options_box .checkbox {
|
|
text-align: center;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
background: none;
|
|
font-size: 1.7em; }
|
|
|
|
/* line 1190, databap.scss */
|
|
#options .options_box .option_line p {
|
|
float: left;
|
|
width: 50%;
|
|
padding: 5px 0;
|
|
font-size: 14px; }
|
|
|
|
/* line 1197, databap.scss */
|
|
#options .options_box .button {
|
|
margin-top: 5px;
|
|
float: none; }
|
|
|
|
/* line 1202, databap.scss */
|
|
#options #admin {
|
|
clear: both;
|
|
width: calc(100% - 20px);
|
|
padding-bottom: 0; }
|
|
|
|
/* line 1208, databap.scss */
|
|
#options #admin .magic_box {
|
|
font-size: 14px;
|
|
padding: 5px 10px 10px;
|
|
background: #f2f5f9;
|
|
float: left;
|
|
margin: 0 10px 10px 0; }
|
|
|
|
/* line 1216, databap.scss */
|
|
#options #admin .magic_box form {
|
|
text-align: center; }
|
|
|
|
/* line 1220, databap.scss */
|
|
#options #admin .magic_box:last-child {
|
|
margin-right: 0; }
|
|
|
|
/* line 1224, databap.scss */
|
|
#options #admin .magic_box h3 {
|
|
margin: 0;
|
|
font-style: italic;
|
|
text-align: center;
|
|
padding: 5px 0; }
|
|
|
|
/* line 1231, databap.scss */
|
|
#options #admin .magic_box input, #options #admin .magic_box select {
|
|
width: calc(100% - 10px);
|
|
margin: 5px 0;
|
|
float: left;
|
|
background: white; }
|
|
|
|
/* line 1237, databap.scss */
|
|
#options #admin .magic_box select {
|
|
width: 100%; }
|
|
|
|
/* Procedure */
|
|
/* line 1243, databap.scss */
|
|
#procedure #procedure_steps .button {
|
|
background-color: #FFFFFF; }
|
|
|
|
/* line 1247, databap.scss */
|
|
#procedure #procedure_steps .button:hover {
|
|
background-color: #EFAB00; }
|
|
|
|
/* line 1251, databap.scss */
|
|
#procedure #procedure_steps .step_box:LAST-CHILD {
|
|
margin-bottom: 0; }
|
|
|
|
/* line 1255, databap.scss */
|
|
#titles_read p.read_title {
|
|
border-bottom: 1px solid #04357B;
|
|
font-weight: bold; }
|
|
|
|
/* line 1260, databap.scss */
|
|
#titles_read p.read_details {
|
|
font-size: 11px;
|
|
font-style: italic;
|
|
margin: 3px 0 15px 0; }
|
|
|
|
/* line 1266, databap.scss */
|
|
#titles_read p.read_description {
|
|
font-size: 13px; }
|
|
|
|
/* line 1270, databap.scss */
|
|
#titles_read p.read_description .fa {
|
|
margin-right: 5px; }
|
|
|
|
/* line 1274, databap.scss */
|
|
#procedure table.step_box {
|
|
width: 100%; }
|
|
|
|
/* line 1278, databap.scss */
|
|
#procedure table.step_box td {
|
|
text-align: left;
|
|
margin: 0; }
|
|
|
|
/* line 1283, databap.scss */
|
|
#procedure table.step_box td.step_margin {
|
|
width: 50%; }
|
|
|
|
/* line 1287, databap.scss */
|
|
#procedure table.step_box td.step_buttons {
|
|
padding-top: 10px; }
|
|
|
|
/* line 1291, databap.scss */
|
|
#procedure table.step_box td.image_box_container {
|
|
vertical-align: top;
|
|
padding-top: 18px;
|
|
padding-left: 22px;
|
|
/* 5*2 (padding) + 1*2 (border) + 10 (own padding) */
|
|
min-width: 350px; }
|
|
|
|
/* line 1298, databap.scss */
|
|
#procedure table.step_box .image_box {
|
|
margin: 10px 0 15px;
|
|
padding: 0; }
|
|
|
|
/* line 1303, databap.scss */
|
|
#procedure table.step_box input[type=file] {
|
|
margin: 0 10px;
|
|
max-width: 250px;
|
|
border: 1px solid #04357B;
|
|
background: #FFFFFF; }
|
|
|
|
/* line 1310, databap.scss */
|
|
#procedure #procedure_title {
|
|
margin-top: 0; }
|
|
|
|
/* line 1314, databap.scss */
|
|
#procedure #bottom_menu {
|
|
margin: 10px 0 0 0; }
|
|
|
|
/* line 1318, databap.scss */
|
|
#procedure #top_menu {
|
|
margin: 0 0 10px 0; }
|
|
|
|
/* line 1322, databap.scss */
|
|
#procedure #validation_button .button {
|
|
margin-right: 10px; }
|
|
|
|
/* Procedure - Read */
|
|
/* line 1328, databap.scss */
|
|
#procedure .thumbnail_box {
|
|
margin: 10px 0;
|
|
height: 100px; }
|
|
|
|
/* line 1333, databap.scss */
|
|
#procedure .thumbnail_image {
|
|
background: #FFFFFF;
|
|
border: 1px solid #04357B;
|
|
width: 100px;
|
|
height: 100px;
|
|
vertical-align: middle; }
|
|
|
|
/* line 1340, databap.scss */
|
|
#procedure .thumbnail_image:hover {
|
|
border-color: #EFAB00; }
|
|
|
|
/* line 1344, databap.scss */
|
|
#procedure .thumbnail_desc {
|
|
font-size: 11px; }
|
|
|
|
/* Procedure - Uploader */
|
|
/* line 1350, databap.scss */
|
|
#procedure .error {
|
|
margin: 0 0 15px 0; }
|
|
|
|
/* line 1354, databap.scss */
|
|
#procedure .uploader_box .error {
|
|
font-size: 11px;
|
|
margin: 10px 0; }
|
|
|
|
/* Doc */
|
|
/* line 1361, databap.scss */
|
|
#doc_container, #doc {
|
|
margin: 0;
|
|
padding: 0; }
|
|
|
|
/* line 1366, databap.scss */
|
|
#doc .step_box {
|
|
margin-bottom: 10px; }
|
|
|
|
/* line 1370, databap.scss */
|
|
#doc .step_box:nth-child(odd) {
|
|
background: #f2f5f9; }
|
|
|
|
/* line 1374, databap.scss */
|
|
#doc #attach_file {
|
|
margin-top: 10px; }
|
|
|
|
/* line 1378, databap.scss */
|
|
#doc .uploader_droparea {
|
|
height: 150px; }
|
|
|
|
/* line 1382, databap.scss */
|
|
#doc #doc_links {
|
|
padding: 20px 10px 10px 0px; }
|
|
|
|
/* line 1386, databap.scss */
|
|
#doc #doc_links a.button {
|
|
margin-top: 5px; }
|
|
|
|
/* Table */
|
|
/* line 1392, databap.scss */
|
|
#table #system {
|
|
width: 80px; }
|
|
|
|
/* line 1396, databap.scss */
|
|
#table input#title {
|
|
width: 20%; }
|
|
|
|
/* line 1399, databap.scss */
|
|
#table input#description {
|
|
width: calc(80% - 92px); }
|
|
|
|
/* line 1403, databap.scss */
|
|
#table .step_box_title a {
|
|
color: #04357B; }
|
|
|
|
/* line 1407, databap.scss */
|
|
#table #validation {
|
|
margin-top: 15px; }
|
|
|
|
/* line 1411, databap.scss */
|
|
#table .table_info {
|
|
margin-top: 20px;
|
|
font-size: 0.8em; }
|
|
|
|
/* line 1416, databap.scss */
|
|
#table #read_title {
|
|
font-weight: bold; }
|
|
|
|
/* line 1420, databap.scss */
|
|
#table #read_description {
|
|
font-style: italic; }
|
|
|
|
/* line 1424, databap.scss */
|
|
#table #read_formated_keywords {
|
|
margin: 10px 0 0 0;
|
|
font-size: 0.9em; }
|
|
|
|
/* line 1429, databap.scss */
|
|
#table #read_formatted_keywords a.internal_link {
|
|
padding: 0 0 0 2px; }
|
|
|
|
/* line 1433, databap.scss */
|
|
#table input:disabled {
|
|
color: #88B2F0;
|
|
background-color: #04357B; }
|
|
|
|
/* line 1438, databap.scss */
|
|
#table .form_success {
|
|
display: none; }
|
|
|
|
/* List */
|
|
/* line 1444, databap.scss */
|
|
#filters_container {
|
|
margin-bottom: 10px; }
|
|
|
|
/* line 1448, databap.scss */
|
|
#list_container div:FIRST-CHILD {
|
|
margin-top: 0; }
|
|
|
|
/* 404 */
|
|
/* line 1454, databap.scss */
|
|
#err_404 p {
|
|
margin-top: 20px;
|
|
color: #04357B; }
|
|
|
|
/* Footer */
|
|
/* line 1461, databap.scss */
|
|
#footer {
|
|
padding-right: 10px;
|
|
text-align: right; }
|
|
|
|
/* line 1466, databap.scss */
|
|
#footer p, #footer a {
|
|
color: #FFFFFF;
|
|
margin: 0;
|
|
font-size: 9px; }
|
|
|
|
/* line 1472, databap.scss */
|
|
#footer a {
|
|
font-weight: bold; }
|
|
|
|
/* Note */
|
|
/* line 1478, databap.scss */
|
|
#note {
|
|
height: 100%; }
|
|
|
|
/* line 1482, databap.scss */
|
|
#note_form {
|
|
margin-bottom: 10px; }
|
|
|
|
/* line 1486, databap.scss */
|
|
#note_form a.button {
|
|
padding: 5px 7px; }
|
|
|
|
/* Debug*/
|
|
/* line 1492, databap.scss */
|
|
.line_h {
|
|
position: fixed;
|
|
top: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
border-bottom: 1px solid red;
|
|
z-index: 1000; }
|
|
|
|
/* line 1500, databap.scss */
|
|
.line_v {
|
|
position: fixed;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 1px;
|
|
border-left: 1px solid red;
|
|
z-index: 1000; }
|
|
|
|
/*# sourceMappingURL=databap.css.map */
|