Building as production
This commit is contained in:
parent
25f5a8800d
commit
3daa19f2de
5 changed files with 36 additions and 2812 deletions
|
@ -1,229 +1,4 @@
|
|||
@import url(https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap);
|
||||
@font-face {
|
||||
font-family: "Digital7";
|
||||
src: url("/fonts/digital.ttf") format("truetype");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
/**
|
||||
* SETTINGS
|
||||
**/
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
@font-face{font-family:Digital7;font-style:normal;font-weight:400;src:url(/fonts/digital.ttf) format("truetype")}*{margin:0;padding:0}html{font-size:100%;scroll-behavior:smooth}html body{background-attachment:fixed;background-image:url(../img/bush.png);color:#3d3d3d;font-family:Hind,sans-serif;font-size:1rem;padding:10px}html body a,html body a:visited{color:inherit;text-decoration:inherit}html body a:hover,html body a:visited:hover{text-decoration:underline}html body .container{margin:0 auto;max-width:1000px;padding:0}html body h1,html body h2,html body h3,html body h4{margin-bottom:.8rem;margin-top:.8rem}html body h1{font-size:2.4rem;margin:3rem 0;text-align:center}html body h2{font-size:1.4rem;margin-top:0;padding-top:0}html body h3{background-color:#0a9f9a;color:#f0f0f0;font-size:1.4rem;margin:0;padding:.8rem;position:relative}html body h3 small{font-size:.9rem}html body h3 .context-menu{cursor:pointer;font-size:1rem;position:absolute;right:.7rem;top:.7rem}html body div.round{background-color:#fff;border-radius:5px;box-shadow:3px 3px 6px 0 rgba(0,0,0,.3);margin-bottom:3rem;overflow:hidden;position:relative}html body div.round h3{margin-bottom:1rem}html body img{vertical-align:sub}html body table{border:1px solid #abc;border-collapse:collapse;border-spacing:0;font-size:14px}html body table th{background-color:#e6eeee}html body table td,html body table th{border:1px solid #9ccece;padding:.3rem}html body table td{background-color:#fff;color:#3d3d3d;text-align:center}html body table td,html body table td img{vertical-align:middle}html body table td.right{text-align:right}html body table#contacts_tbl,html body table#tasks_tbl{width:100%}html body .no-data{color:#727272;font-size:.9rem;font-style:italic;margin-bottom:1.3rem;text-align:center}html body .quick-view .new-group{border-radius:.4rem;cursor:pointer;display:inline-block;margin:.2rem;overflow:hidden}html body .quick-view .new-group .square{float:left;height:100%;line-height:1.2rem;margin:0;min-width:1.4rem;padding:.2rem .6rem;text-align:center;vertical-align:middle}html body .quick-view .new-group .square:not(:first-of-type){border-left:1px solid #fff}html body .tasks .task{background-color:#fff;border-radius:5px;box-shadow:3px 3px 6px 0 rgba(0,0,0,.3);margin-top:2rem;overflow:hidden;padding:0;position:relative}html body .spacer{clear:both;line-height:0;margin:0;padding:0}html body .block-content{padding:.8rem}html body .highlight{background-color:#166260;border-radius:.5rem;color:#fff;display:inline-block;font-size:1rem;padding:0 1rem;vertical-align:middle}html body .small{font-size:.8rem}html body .hidden{display:none}html body .up{background-color:#8adf8a}html body .down{background-color:#f79292}html body .unknown{background-color:#f5d69e}html body .inactive{background-color:#dfdfdf!important;opacity:.5}html body .refreshed-time{font-size:.8rem;margin-bottom:2rem;text-align:right}html body .refreshed-time .clock{background-color:#000;border-radius:4px;color:#fff;font-family:Digital7;font-size:1.2rem;padding:.3rem .5rem}@-webkit-keyframes shake{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}@keyframes shake{10%,90%{transform:translate3d(-1px,0,0)}20%,80%{transform:translate3d(2px,0,0)}30%,50%,70%{transform:translate3d(-4px,0,0)}40%,60%{transform:translate3d(4px,0,0)}}
|
||||
|
||||
html {
|
||||
font-size: 100%;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
html body {
|
||||
padding: 10px;
|
||||
font-family: "Hind", sans-serif;
|
||||
font-size: 1rem;
|
||||
color: #3D3D3D;
|
||||
background-image: url(../img/bush.png);
|
||||
background-attachment: fixed;
|
||||
}
|
||||
html body a, html body a:visited {
|
||||
color: inherit;
|
||||
text-decoration: inherit;
|
||||
}
|
||||
html body a:hover, html body a:visited:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
html body .container {
|
||||
padding: 0;
|
||||
margin: 0 auto;
|
||||
max-width: 1000px;
|
||||
}
|
||||
html body h1, html body h2, html body h3, html body h4 {
|
||||
margin-top: 0.8rem;
|
||||
margin-bottom: 0.8rem;
|
||||
}
|
||||
html body h1 {
|
||||
font-size: 2.4rem;
|
||||
text-align: center;
|
||||
margin: 3rem 0;
|
||||
}
|
||||
html body h2 {
|
||||
font-size: 1.4rem;
|
||||
margin-top: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
html body h3 {
|
||||
font-size: 1.4rem;
|
||||
background-color: #0a9f9a;
|
||||
margin: 0;
|
||||
padding: 0.8rem;
|
||||
color: #f0f0f0;
|
||||
position: relative;
|
||||
}
|
||||
html body h3 small {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
html body h3 .context-menu {
|
||||
position: absolute;
|
||||
right: 0.7rem;
|
||||
top: 0.7rem;
|
||||
cursor: pointer;
|
||||
font-size: 1rem;
|
||||
}
|
||||
html body div.round {
|
||||
box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.3);
|
||||
border-radius: 5px;
|
||||
position: relative;
|
||||
background-color: white;
|
||||
overflow: hidden;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
html body div.round h3 {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
html body img {
|
||||
vertical-align: sub;
|
||||
}
|
||||
html body table {
|
||||
border: 1px solid #ABC;
|
||||
font-size: 14px;
|
||||
border-spacing: 0;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
html body table th {
|
||||
background-color: #e6EEEE;
|
||||
border: 1px solid #9ccece;
|
||||
padding: 0.3rem;
|
||||
}
|
||||
html body table td {
|
||||
color: #3D3D3D;
|
||||
padding: 0.3rem;
|
||||
background-color: #FFF;
|
||||
border: 1px solid #9ccece;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
}
|
||||
html body table td img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
html body table td.right {
|
||||
text-align: right;
|
||||
}
|
||||
html body table#tasks_tbl, html body table#contacts_tbl {
|
||||
width: 100%;
|
||||
}
|
||||
html body .no-data {
|
||||
text-align: center;
|
||||
font-style: italic;
|
||||
margin-bottom: 1.3rem;
|
||||
font-size: 0.9rem;
|
||||
color: #727272;
|
||||
}
|
||||
html body .quick-view .new-group {
|
||||
margin: 0.2rem;
|
||||
display: inline-block;
|
||||
border-radius: 0.4rem;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
}
|
||||
html body .quick-view .new-group .square {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
float: left;
|
||||
line-height: 1.2rem;
|
||||
min-width: 1.4rem;
|
||||
padding: 0.2rem 0.6rem;
|
||||
}
|
||||
html body .quick-view .new-group .square:not(:first-of-type) {
|
||||
border-left: 1px solid white;
|
||||
}
|
||||
html body .tasks .task {
|
||||
margin-top: 2rem;
|
||||
padding: 0;
|
||||
box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.3);
|
||||
border-radius: 5px;
|
||||
position: relative;
|
||||
background-color: white;
|
||||
overflow: hidden;
|
||||
}
|
||||
html body .spacer {
|
||||
clear: both;
|
||||
line-height: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
html body .block-content {
|
||||
padding: 0.8rem;
|
||||
}
|
||||
html body .highlight {
|
||||
background-color: #166260;
|
||||
padding: 0px 1rem;
|
||||
display: inline-block;
|
||||
color: #FFF;
|
||||
vertical-align: middle;
|
||||
border-radius: 0.5rem;
|
||||
font-size: 1rem;
|
||||
}
|
||||
html body .small {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
html body .hidden {
|
||||
display: none;
|
||||
}
|
||||
html body .up {
|
||||
background-color: #8adf8a;
|
||||
}
|
||||
html body .down {
|
||||
background-color: #f79292;
|
||||
}
|
||||
html body .unknown {
|
||||
background-color: #f5d69e;
|
||||
}
|
||||
html body .inactive {
|
||||
background-color: #dfdfdf !important;
|
||||
opacity: 0.5;
|
||||
}
|
||||
html body .refreshed-time {
|
||||
text-align: right;
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
html body .refreshed-time .clock {
|
||||
font-family: Digital7;
|
||||
font-size: 1.2rem;
|
||||
background-color: #000;
|
||||
border-radius: 4px;
|
||||
color: #FFF;
|
||||
padding: 0.3rem 0.5rem;
|
||||
}
|
||||
|
||||
@-webkit-keyframes shake {
|
||||
10%, 90% {
|
||||
transform: translate3d(-1px, 0, 0);
|
||||
}
|
||||
20%, 80% {
|
||||
transform: translate3d(2px, 0, 0);
|
||||
}
|
||||
30%, 50%, 70% {
|
||||
transform: translate3d(-4px, 0, 0);
|
||||
}
|
||||
40%, 60% {
|
||||
transform: translate3d(4px, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes shake {
|
||||
10%, 90% {
|
||||
transform: translate3d(-1px, 0, 0);
|
||||
}
|
||||
20%, 80% {
|
||||
transform: translate3d(2px, 0, 0);
|
||||
}
|
||||
30%, 50%, 70% {
|
||||
transform: translate3d(-4px, 0, 0);
|
||||
}
|
||||
40%, 60% {
|
||||
transform: translate3d(4px, 0, 0);
|
||||
}
|
||||
}
|
||||
/*# sourceMappingURL=app.css.map*/
|
1
public/css/app.css.map
Normal file
1
public/css/app.css.map
Normal file
File diff suppressed because one or more lines are too long
2588
public/js/app.js
2588
public/js/app.js
File diff suppressed because one or more lines are too long
29
public/js/app.js.LICENSE.txt
Normal file
29
public/js/app.js.LICENSE.txt
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*!
|
||||
* ApexCharts v3.32.0
|
||||
* (c) 2018-2021 ApexCharts
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* Vue.js v2.6.14
|
||||
* (c) 2014-2021 Evan You
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
/*!
|
||||
* vuex v3.6.2
|
||||
* (c) 2021 Evan You
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/*! svg.draggable.js - v2.2.2 - 2019-01-08
|
||||
* https://github.com/svgdotjs/svg.draggable.js
|
||||
* Copyright (c) 2019 Wout Fierens; Licensed MIT */
|
||||
|
||||
/*! svg.filter.js - v2.0.2 - 2016-02-24
|
||||
* https://github.com/wout/svg.filter.js
|
||||
* Copyright (c) 2016 Wout Fierens; Licensed MIT */
|
||||
|
||||
//! moment.js
|
||||
|
||||
//! moment.js locale configuration
|
1
public/js/app.js.map
Normal file
1
public/js/app.js.map
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue