PESANTE UPDATE PACCHETTI x bootstrap update & co
@@ -0,0 +1,47 @@
|
||||
using System.Web.Optimization;
|
||||
|
||||
namespace XPST
|
||||
{
|
||||
public class BundleConfig
|
||||
{
|
||||
// For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254726
|
||||
public static void RegisterBundles(BundleCollection bundles)
|
||||
{
|
||||
bundles.Add(new ScriptBundle("~/bundles/WebFormsJs").Include(
|
||||
"~/Scripts/WebForms/WebForms.js",
|
||||
"~/Scripts/WebForms/WebUIValidation.js",
|
||||
"~/Scripts/WebForms/MenuStandards.js",
|
||||
"~/Scripts/WebForms/Focus.js",
|
||||
"~/Scripts/WebForms/GridView.js",
|
||||
"~/Scripts/WebForms/DetailsView.js",
|
||||
"~/Scripts/WebForms/TreeView.js",
|
||||
"~/Scripts/WebForms/WebParts.js"));
|
||||
|
||||
bundles.Add(new ScriptBundle("~/bundles/MsAjaxJs").Include(
|
||||
"~/Scripts/WebForms/MsAjax/MicrosoftAjax.js",
|
||||
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxApplicationServices.js",
|
||||
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxTimer.js",
|
||||
"~/Scripts/WebForms/MsAjax/MicrosoftAjaxWebForms.js"));
|
||||
|
||||
// Use the Development version of Modernizr to develop with and learn from. Then, when you’re
|
||||
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need
|
||||
|
||||
//bundles.Add(new ScriptBundle("~/bundles/modernizr").Include("~/Scripts/modernizr-*"));
|
||||
bundles.Add(new ScriptBundle("~/bundles/jquery").Include("~/Scripts/jquery-{version}.js"));
|
||||
bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include("~/Scripts/jquery-ui-{version}.js"));
|
||||
//bundles.Add(new ScriptBundle("~/bundles/BrowserWindowSize").Include("~/Scripts/BrowserWindowSize.js"));
|
||||
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include("~/Scripts/bootstrap.bundle.js"));
|
||||
|
||||
//bundles.Add(new ScriptBundle("~/bundles/jqueryui-i18n").Include(
|
||||
// "~/Scripts/jquery-ui-i18n.min.js"));
|
||||
// aggiungo bundle dinamico x less --> css
|
||||
//bundles.Add(new DynamicFolderBundle("less", "*.less"));
|
||||
// aggiungo bundle dinamico x coffee --> jscript
|
||||
//bundles.Add(new DynamicFolderBundle("coffee", "*.coffee"));
|
||||
|
||||
// abilito boundle "forzato"!
|
||||
BundleTable.EnableOptimizations = true;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<bundles version="1.0">
|
||||
<styleBundle path="~/Content/css">
|
||||
<include path="~/Content/bootstrap.min.css" />
|
||||
<include path="~/Content/font-awesome.min.css" />
|
||||
<include path="~/Content/fonts.min.css" />
|
||||
<include path="~/Content/Style.min.css" />
|
||||
</styleBundle>
|
||||
<!--<styleBundle path="~/Content/themes/base/css">
|
||||
<include path="~/Content/themes/base/jquery.ui.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.accordion.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.autocomplete.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.base.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.button.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.core.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.datepicker.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.dialog.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.menu.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.progressbar.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.resizable.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.selectable.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.slider.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.spinner.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.tabs.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.theme.css" />
|
||||
<include path="~/Content/themes/base/jquery.ui.tooltip.css" />
|
||||
</styleBundle>-->
|
||||
</bundles>
|
||||
@@ -0,0 +1,482 @@
|
||||
body {
|
||||
margin-top: 0px;
|
||||
margin-left: 0px;
|
||||
margin-bottom: 0px;
|
||||
margin-right: 0px;
|
||||
font-family: Verdana, Arial;
|
||||
font-size: small;
|
||||
}
|
||||
.fullscreen {
|
||||
display: block;
|
||||
/*set the div in the top-left corner of the screen*/
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
/*set the width and height to 100% of the screen*/
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
#content {
|
||||
width: 210px;
|
||||
height: 240px;
|
||||
padding: 0px;
|
||||
border: 1px black solid;
|
||||
background-position: center bottom;
|
||||
background-image: url('images/logo_sw.jpg');
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
#activeContent {
|
||||
height: 200px;
|
||||
}
|
||||
#topBanner {
|
||||
height: 20px;
|
||||
}
|
||||
#smallTable {
|
||||
width: 98%;
|
||||
padding: 1px;
|
||||
white-space: nowrap;
|
||||
font-size: 10pt;
|
||||
}
|
||||
#smallGrid {
|
||||
width: 100%;
|
||||
font-size: 8pt;
|
||||
}
|
||||
#smallGridDetail {
|
||||
width: 100%;
|
||||
font-size: 9pt;
|
||||
}
|
||||
.quadro1,
|
||||
.quadro3,
|
||||
.quadro5 {
|
||||
float: left;
|
||||
width: 48%;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.quadro2,
|
||||
.quadro4,
|
||||
.quadro6 {
|
||||
float: right;
|
||||
width: 48%;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.userBanner {
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
background-color: #6969AC;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
color: White;
|
||||
}
|
||||
.taskBanner {
|
||||
height: 16px;
|
||||
padding-top: 0px;
|
||||
padding-bottom: 0px;
|
||||
background-color: #ABABFF;
|
||||
text-align: center;
|
||||
color: Black;
|
||||
}
|
||||
.ctrHeaderPager {
|
||||
background-color: #b8b8b8;
|
||||
font-weight: bold;
|
||||
color: White;
|
||||
text-align: center;
|
||||
}
|
||||
.ctrHeaderPagerMini {
|
||||
background-color: #b8b8b8;
|
||||
color: White;
|
||||
text-align: center;
|
||||
font-size: x-small;
|
||||
height: 10px;
|
||||
}
|
||||
.ctrHeaderPagerWide {
|
||||
background-color: #b8b8b8;
|
||||
font-weight: bold;
|
||||
color: White;
|
||||
font-size: 10pt;
|
||||
}
|
||||
.ctrRowStyle {
|
||||
vertical-align: top;
|
||||
background-color: #EFF3FB;
|
||||
text-align: left;
|
||||
}
|
||||
.ctrAltRowStyle {
|
||||
vertical-align: top;
|
||||
background-color: White;
|
||||
text-align: left;
|
||||
}
|
||||
.ctrRowStyleRight {
|
||||
background-color: #EFF3FB;
|
||||
text-align: right;
|
||||
}
|
||||
.ctrAltRowStyleRight {
|
||||
background-color: White;
|
||||
text-align: right;
|
||||
}
|
||||
.ctrInsRowStyle {
|
||||
background-color: #b8b8b8;
|
||||
}
|
||||
.ctrEditRowStyle {
|
||||
background-color: #D1DDF1;
|
||||
}
|
||||
.ctrSelRowStyle {
|
||||
font-weight: bold;
|
||||
color: #333333;
|
||||
background-color: #D1DDF1;
|
||||
}
|
||||
.ctrFooterMini {
|
||||
font-size: x-small;
|
||||
height: 15px;
|
||||
}
|
||||
.btnDeposita {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px red;
|
||||
background-color: #FFCCAA;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnSposta {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px green;
|
||||
background-color: #AAFFAA;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnRettifica {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px blue;
|
||||
background-color: #5454FF;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
color: White;
|
||||
}
|
||||
.btnPreleva {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px red;
|
||||
background-color: #FFCCAA;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnRiattiva {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px red;
|
||||
background-color: #FFCCFF;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnConferma {
|
||||
display: block;
|
||||
width: 56px;
|
||||
height: 40px;
|
||||
border: solid 2px #DDDD99;
|
||||
background-color: #FFFFAA;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnCellaPiena {
|
||||
display: block;
|
||||
width: 56px;
|
||||
height: 40px;
|
||||
border: solid 2px blue;
|
||||
background-color: #AAFFFF;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnBarcode {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
text-align: center;
|
||||
border: solid 2px blue;
|
||||
background-color: #AAFFFF;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnChiudi {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px #DDDD99;
|
||||
background-color: #FFFFAA;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnChiudiInput {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px red;
|
||||
background-color: #FFCCAA;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnDeliberaFusi {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px green;
|
||||
background-color: #AAFFAA;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnDeliberaWipPre {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px green;
|
||||
background-color: #AAFFAA;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnDeliberaWipPost {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px green;
|
||||
background-color: #AAFFAA;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnUpdate {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px green;
|
||||
background-color: #AAFFAA;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
}
|
||||
.btnCancel {
|
||||
display: block;
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px blue;
|
||||
background-color: #AAAAFF;
|
||||
font-size: x-small;
|
||||
font-weight: bold;
|
||||
}
|
||||
/* classe generale per div dei bottoni */
|
||||
.divButtons {
|
||||
float: left;
|
||||
}
|
||||
/* bottoni homepage */
|
||||
.btnBarcodeBigWide1 {
|
||||
width: 320px;
|
||||
height: 140px;
|
||||
border: solid 2px blue;
|
||||
background-color: #88FFFF;
|
||||
font-weight: bold;
|
||||
font-size: 20pt;
|
||||
text-align: center;
|
||||
}
|
||||
.btnBarcodeBigWide2 {
|
||||
width: 320px;
|
||||
height: 140px;
|
||||
border: solid 2px blue;
|
||||
background-color: #FF88FF;
|
||||
font-weight: bold;
|
||||
font-size: 20pt;
|
||||
text-align: center;
|
||||
}
|
||||
.btnBarcodeBigWide3 {
|
||||
width: 320px;
|
||||
height: 140px;
|
||||
border: solid 2px blue;
|
||||
background-color: #FFFF88;
|
||||
font-weight: bold;
|
||||
font-size: 20pt;
|
||||
text-align: center;
|
||||
}
|
||||
.btnBarcodeBigWide4 {
|
||||
width: 320px;
|
||||
height: 140px;
|
||||
border: solid 2px blue;
|
||||
background-color: #F8F8F8;
|
||||
font-weight: bold;
|
||||
font-size: 20pt;
|
||||
text-align: center;
|
||||
}
|
||||
.btnBarcodeBigWide5 {
|
||||
width: 320px;
|
||||
height: 140px;
|
||||
border: solid 2px blue;
|
||||
background-color: #44FF44;
|
||||
font-weight: bold;
|
||||
font-size: 20pt;
|
||||
text-align: center;
|
||||
}
|
||||
.btnBarcodeBigWide6 {
|
||||
width: 320px;
|
||||
height: 140px;
|
||||
border: solid 2px blue;
|
||||
background-color: #FF4444;
|
||||
font-weight: bold;
|
||||
font-size: 20pt;
|
||||
text-align: center;
|
||||
}
|
||||
.btnBarcodeBig {
|
||||
width: 95px;
|
||||
height: 90px;
|
||||
border: solid 2px blue;
|
||||
background-color: #AAFFFF;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnBarcodeBigWide {
|
||||
width: 155px;
|
||||
height: 80px;
|
||||
border: solid 2px blue;
|
||||
background-color: #AAFFFF;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.btnSearchBig {
|
||||
width: 95px;
|
||||
height: 90px;
|
||||
border: solid 2px #DDDD99;
|
||||
background-color: #FFFFAA;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnCaricaBig {
|
||||
width: 95px;
|
||||
height: 90px;
|
||||
border: solid 2px #99DD99;
|
||||
background-color: #AAFFAA;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnScaricaBig {
|
||||
width: 95px;
|
||||
height: 90px;
|
||||
border: solid 2px #FF6666;
|
||||
background-color: #FFAA88;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnListBig {
|
||||
width: 95px;
|
||||
height: 90px;
|
||||
border: solid 2px #BBBB33;
|
||||
background-color: #FFFF00;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnListBigWide {
|
||||
width: 190px;
|
||||
height: 90px;
|
||||
border: solid 2px red;
|
||||
background-color: #FFAA88;
|
||||
font-weight: bold;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.btnTaskBig {
|
||||
width: 95px;
|
||||
height: 90px;
|
||||
border: solid 2px green;
|
||||
background-color: #AAFFAA;
|
||||
font-weight: bold;
|
||||
white-space: pre;
|
||||
}
|
||||
.btnHome {
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px green;
|
||||
background-color: #AAFFAA;
|
||||
white-space: pre;
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
.btnLogout {
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px red;
|
||||
background-color: #FFAAAA;
|
||||
white-space: pre;
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
.btnShowPeriodo {
|
||||
height: 40px;
|
||||
border: solid 2px Orange;
|
||||
background-color: #FFCCAA;
|
||||
white-space: pre;
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
.btnBarcodeSmall {
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px blue;
|
||||
background-color: #AAFFFF;
|
||||
white-space: pre;
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
.btnPrendiInCarico {
|
||||
width: 140px;
|
||||
height: 40px;
|
||||
border: solid 2px red;
|
||||
background-color: #FFCCAA;
|
||||
white-space: pre;
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
.btnCarica {
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px green;
|
||||
background-color: #AAFFAA;
|
||||
white-space: pre;
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
.btnScarica {
|
||||
width: 80px;
|
||||
height: 40px;
|
||||
border: solid 2px red;
|
||||
background-color: #FFAAAA;
|
||||
white-space: pre;
|
||||
font-size: 9pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
.errore {
|
||||
color: Red;
|
||||
font-weight: bold;
|
||||
}
|
||||
.divSx {
|
||||
float: left;
|
||||
}
|
||||
.divDx {
|
||||
float: right;
|
||||
}
|
||||
@@ -0,0 +1,330 @@
|
||||
/*!
|
||||
* Bootstrap Reboot v4.0.0 (https://getbootstrap.com)
|
||||
* Copyright 2011-2018 The Bootstrap Authors
|
||||
* Copyright 2011-2018 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
font-family: sans-serif;
|
||||
line-height: 1.15;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
-ms-overflow-style: scrollbar;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
}
|
||||
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
|
||||
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
color: #212529;
|
||||
text-align: left;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
[tabindex="-1"]:focus {
|
||||
outline: 0 !important;
|
||||
}
|
||||
|
||||
hr {
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
abbr[title],
|
||||
abbr[data-original-title] {
|
||||
text-decoration: underline;
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
address {
|
||||
margin-bottom: 1rem;
|
||||
font-style: normal;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-bottom: .5rem;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #007bff;
|
||||
text-decoration: none;
|
||||
background-color: transparent;
|
||||
-webkit-text-decoration-skip: objects;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #0056b3;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]) {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]):focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
pre {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
-ms-overflow-style: scrollbar;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
caption {
|
||||
padding-top: 0.75rem;
|
||||
padding-bottom: 0.75rem;
|
||||
color: #6c757d;
|
||||
text-align: left;
|
||||
caption-side: bottom;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: inherit;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:focus {
|
||||
outline: 1px dotted;
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
button,
|
||||
input {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
button,
|
||||
html [type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
input[type="datetime-local"],
|
||||
input[type="month"] {
|
||||
-webkit-appearance: listbox;
|
||||
}
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
legend {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: .5rem;
|
||||
font-size: 1.5rem;
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
[type="search"] {
|
||||
outline-offset: -2px;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
[type="search"]::-webkit-search-cancel-button,
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
output {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
||||
@@ -0,0 +1,8 @@
|
||||
/*!
|
||||
* Bootstrap Reboot v4.0.0 (https://getbootstrap.com)
|
||||
* Copyright 2011-2018 The Bootstrap Authors
|
||||
* Copyright 2011-2018 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}@-ms-viewport{width:device-width}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
|
||||
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
|
||||
@@ -0,0 +1,12 @@
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('OpenSans.woff') format('woff');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Open Sans Condensed';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url('OpenSansCondensed.woff') format('woff');
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('OpenSans.woff') format('woff');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans Condensed';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url('OpenSansCondensed.woff') format('woff');
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:url('OpenSans.woff') format('woff');}@font-face{font-family:'Open Sans Condensed';font-style:normal;font-weight:300;src:url('OpenSansCondensed.woff') format('woff');}
|
||||
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 219 B |
|
After Width: | Height: | Size: 227 B |
|
After Width: | Height: | Size: 244 B |
|
After Width: | Height: | Size: 243 B |
|
After Width: | Height: | Size: 146 B |
|
After Width: | Height: | Size: 167 B |
|
After Width: | Height: | Size: 173 B |
|
After Width: | Height: | Size: 159 B |
|
After Width: | Height: | Size: 171 B |
|
After Width: | Height: | Size: 149 B |
|
After Width: | Height: | Size: 149 B |
|
After Width: | Height: | Size: 156 B |
|
After Width: | Height: | Size: 147 B |
|
After Width: | Height: | Size: 152 B |
|
After Width: | Height: | Size: 147 B |
|
After Width: | Height: | Size: 163 B |
|
After Width: | Height: | Size: 169 B |
|
After Width: | Height: | Size: 163 B |
|
After Width: | Height: | Size: 165 B |
|
After Width: | Height: | Size: 151 B |
|
After Width: | Height: | Size: 307 B |
|
After Width: | Height: | Size: 314 B |
|
After Width: | Height: | Size: 233 B |
|
After Width: | Height: | Size: 240 B |
|
After Width: | Height: | Size: 132 B |
|
After Width: | Height: | Size: 135 B |
|
After Width: | Height: | Size: 147 B |
|
After Width: | Height: | Size: 152 B |
|
After Width: | Height: | Size: 146 B |
|
After Width: | Height: | Size: 143 B |
|
After Width: | Height: | Size: 250 B |
|
After Width: | Height: | Size: 251 B |
|
After Width: | Height: | Size: 207 B |
|
After Width: | Height: | Size: 213 B |
|
After Width: | Height: | Size: 174 B |
|
After Width: | Height: | Size: 177 B |
|
After Width: | Height: | Size: 184 B |
|
After Width: | Height: | Size: 194 B |
|
After Width: | Height: | Size: 196 B |
|
After Width: | Height: | Size: 204 B |
|
After Width: | Height: | Size: 169 B |
|
After Width: | Height: | Size: 172 B |
|
After Width: | Height: | Size: 310 B |
|
After Width: | Height: | Size: 316 B |
|
After Width: | Height: | Size: 212 B |
|
After Width: | Height: | Size: 210 B |
|
After Width: | Height: | Size: 165 B |
|
After Width: | Height: | Size: 160 B |
|
After Width: | Height: | Size: 171 B |
|
After Width: | Height: | Size: 185 B |
|
After Width: | Height: | Size: 163 B |
|
After Width: | Height: | Size: 170 B |
|
After Width: | Height: | Size: 249 B |
|
After Width: | Height: | Size: 253 B |
|
After Width: | Height: | Size: 299 B |
|
After Width: | Height: | Size: 308 B |
|
After Width: | Height: | Size: 233 B |
|
After Width: | Height: | Size: 243 B |
|
After Width: | Height: | Size: 318 B |
|
After Width: | Height: | Size: 302 B |
|
After Width: | Height: | Size: 160 B |
|
After Width: | Height: | Size: 167 B |
|
After Width: | Height: | Size: 242 B |
|
After Width: | Height: | Size: 246 B |
|
After Width: | Height: | Size: 150 B |
|
After Width: | Height: | Size: 154 B |
|
After Width: | Height: | Size: 250 B |
|
After Width: | Height: | Size: 251 B |
|
After Width: | Height: | Size: 245 B |
|
After Width: | Height: | Size: 247 B |