first commit, after modifying client section
This commit is contained in:
28
public/assets/css/click.css
vendored
Executable file
28
public/assets/css/click.css
vendored
Executable file
@@ -0,0 +1,28 @@
|
||||
.column-title{
|
||||
/*style: width: 50%;*/
|
||||
}
|
||||
.frame {
|
||||
overflow-y: auto;
|
||||
/*border: 1px solid lightgreen;*/
|
||||
height: 15em;
|
||||
/*width: 10em;*/
|
||||
/*line-height: 1em;*/
|
||||
}
|
||||
|
||||
.frame::-webkit-scrollbar {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
.frame::-webkit-scrollbar:vertical {
|
||||
width: 11px;
|
||||
}
|
||||
|
||||
.frame::-webkit-scrollbar:horizontal {
|
||||
height: 11px;
|
||||
}
|
||||
|
||||
.frame::-webkit-scrollbar-thumb {
|
||||
border-radius: 8px;
|
||||
border: 2px solid white; /* should match background, can't be transparent */
|
||||
background-color: rgba(0, 0, 0, .5);
|
||||
}
|
||||
57
public/assets/css/demo.css
vendored
Executable file
57
public/assets/css/demo.css
vendored
Executable file
@@ -0,0 +1,57 @@
|
||||
body {
|
||||
font-family : Ubuntu, SansSerif;
|
||||
width : 1000px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size : 1.3em;
|
||||
padding-bottom : 10px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size : 1em;
|
||||
margin-top : 0px;
|
||||
margin-bottom : 8px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin : 0px;
|
||||
padding : 0px;
|
||||
line-height : 1.5em;
|
||||
}
|
||||
|
||||
div#left {
|
||||
font-size : small;
|
||||
position : fixed;
|
||||
left : 0;
|
||||
top : 0;
|
||||
width : 300px;
|
||||
}
|
||||
|
||||
div#content {
|
||||
position : relative;
|
||||
left : 300px;
|
||||
}
|
||||
|
||||
div.text {
|
||||
padding : 10px;
|
||||
}
|
||||
|
||||
div#left a {
|
||||
color : #0000a0;
|
||||
}
|
||||
|
||||
div.orgChart a {
|
||||
color : black;
|
||||
text-decoration : none;
|
||||
}
|
||||
|
||||
div.orgChart a:hover {
|
||||
color : black;
|
||||
text-decoration : underline;
|
||||
}
|
||||
|
||||
img.star {
|
||||
width : 16px;
|
||||
height : 16px;
|
||||
}
|
||||
5
public/assets/css/fontawesome.css
vendored
Executable file
5
public/assets/css/fontawesome.css
vendored
Executable file
File diff suppressed because one or more lines are too long
99
public/assets/css/jq-orgchart.css
vendored
Executable file
99
public/assets/css/jq-orgchart.css
vendored
Executable file
@@ -0,0 +1,99 @@
|
||||
div.orgChart {
|
||||
border : 1px solid #cccccc;
|
||||
background-color : #ffffe8;
|
||||
margin : 10px;
|
||||
padding : 20px;
|
||||
}
|
||||
|
||||
div.orgChart h2 {
|
||||
margin : 0px;
|
||||
font-size : 1em;
|
||||
border-bottom : none;
|
||||
}
|
||||
|
||||
div.orgChart ul {
|
||||
list-style : none;
|
||||
margin : 4px;
|
||||
padding : 0px;
|
||||
font-size : 0.8em;
|
||||
text-align : left;
|
||||
}
|
||||
|
||||
div.orgChart ul.stack,
|
||||
div.orgChart ul.stack ul {
|
||||
text-align : center;
|
||||
}
|
||||
|
||||
div.orgChart table {
|
||||
width : 100%;
|
||||
}
|
||||
|
||||
div.orgChart tr.lines td.line {
|
||||
width : 1px;
|
||||
height : 20px;
|
||||
}
|
||||
|
||||
div.orgChart tr.lines td.top {
|
||||
border-top : 3px solid black;
|
||||
}
|
||||
|
||||
div.orgChart tr.lines td.left {
|
||||
border-right : 2px solid black;
|
||||
}
|
||||
|
||||
div.orgChart tr.lines td.right {
|
||||
border-left : 2px solid black;
|
||||
}
|
||||
|
||||
div.orgChart td {
|
||||
text-align : center;
|
||||
vertical-align : top;
|
||||
padding : 0px 2px;
|
||||
}
|
||||
|
||||
div.orgChart div.node {
|
||||
cursor : default;
|
||||
border : 2px solid black;
|
||||
display : inline-block;
|
||||
padding : 0 4px;
|
||||
width : 96px;
|
||||
height : 60px;
|
||||
background-color : #ffffcf;
|
||||
line-height : 1.3em;
|
||||
border-radius : 8px;
|
||||
box-shadow : 4px 4px 6px #888888;
|
||||
-moz-border-radius : 8px;
|
||||
-moz-box-shadow : 4px 4px 6px #888888;
|
||||
-webkit-border-radius : 8px;
|
||||
-webkit-box-shadow : 4px 4px 6px #888888;
|
||||
}
|
||||
|
||||
div.orgChart div.hasChildren {
|
||||
background-color : #ffff98;
|
||||
}
|
||||
|
||||
div.orgChart.interactive div.hasChildren {
|
||||
cursor : pointer;
|
||||
}
|
||||
|
||||
div.orgChart div.node.hover {
|
||||
background-color : white;
|
||||
}
|
||||
|
||||
div.orgChart div.adjunct.node {
|
||||
position : absolute;
|
||||
margin-top : 8px;
|
||||
margin-left : -110px;
|
||||
width : 80px;
|
||||
height : 40px;
|
||||
background-color : #efefef;
|
||||
}
|
||||
|
||||
div.orgChart div.adjunct-link {
|
||||
display : inline-block;
|
||||
position : absolute;
|
||||
margin-left : -20px;
|
||||
margin-top : 25px;
|
||||
width : 20px;
|
||||
border : 1px dashed black;
|
||||
}
|
||||
9
public/assets/css/jquery-confirm.min.css
vendored
Normal file
9
public/assets/css/jquery-confirm.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2
public/assets/css/orgchart.css
vendored
Executable file
2
public/assets/css/orgchart.css
vendored
Executable file
File diff suppressed because one or more lines are too long
622
public/assets/css/report.css
vendored
Executable file
622
public/assets/css/report.css
vendored
Executable file
@@ -0,0 +1,622 @@
|
||||
/*
|
||||
Icon Font: fontcustom
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: "fontcustom";
|
||||
src: url("./fontcustom_511999ab39d2316d71a49245451dd766.eot");
|
||||
src: url("./fontcustom_511999ab39d2316d71a49245451dd766.eot?#iefix")
|
||||
format("embedded-opentype"),
|
||||
url("./fontcustom_511999ab39d2316d71a49245451dd766.woff") format("woff"),
|
||||
url("./fontcustom_511999ab39d2316d71a49245451dd766.ttf") format("truetype"),
|
||||
url("./fontcustom_511999ab39d2316d71a49245451dd766.svg#fontcustom")
|
||||
format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
||||
@font-face {
|
||||
font-family: "fontcustom";
|
||||
src: url("./fontcustom_511999ab39d2316d71a49245451dd766.svg#fontcustom")
|
||||
format("svg");
|
||||
}
|
||||
}
|
||||
|
||||
[data-icon]:before {
|
||||
content: attr(data-icon);
|
||||
}
|
||||
|
||||
[data-icon]:before,
|
||||
.icon-arrow:before,
|
||||
.icon-degraded:before,
|
||||
.icon-help:before,
|
||||
.icon-menu:before,
|
||||
.icon-operational:before,
|
||||
.icon-outage:before,
|
||||
.icon-partial:before {
|
||||
display: inline-block;
|
||||
font-family: "fontcustom";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
line-height: 1;
|
||||
text-decoration: inherit;
|
||||
text-rendering: optimizeLegibility;
|
||||
text-transform: none;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.icon-arrow:before {
|
||||
content: "\f107";
|
||||
}
|
||||
.icon-degraded:before {
|
||||
content: "\f108";
|
||||
}
|
||||
.icon-help:before {
|
||||
content: "\f109";
|
||||
}
|
||||
.icon-menu:before {
|
||||
content: "\f10a";
|
||||
}
|
||||
.icon-operational:before {
|
||||
content: "\f10b";
|
||||
}
|
||||
.icon-outage:before {
|
||||
content: "\f10c";
|
||||
}
|
||||
.icon-partial:before {
|
||||
content: "\f10d";
|
||||
}
|
||||
/* Menu Icon Animation */
|
||||
|
||||
#hamburger {
|
||||
width: 18px;
|
||||
height: 14px;
|
||||
position: relative;
|
||||
-webkit-transform: rotate(0deg);
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
-webkit-transition: 0.5s ease-in-out;
|
||||
-moz-transition: 0.5s ease-in-out;
|
||||
-o-transition: 0.5s ease-in-out;
|
||||
transition: 0.5s ease-in-out;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#hamburger span {
|
||||
display: block;
|
||||
position: absolute;
|
||||
height: 3px;
|
||||
width: 100%;
|
||||
background: #ffffff;
|
||||
border-radius: 1px;
|
||||
opacity: 1;
|
||||
left: 0;
|
||||
-webkit-transform: rotate(0deg);
|
||||
-moz-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
-webkit-transition: 0.25s ease-in-out;
|
||||
-moz-transition: 0.25s ease-in-out;
|
||||
-o-transition: 0.25s ease-in-out;
|
||||
transition: 0.25s ease-in-out;
|
||||
}
|
||||
|
||||
#hamburger span:nth-child(1) {
|
||||
top: 1px;
|
||||
-webkit-transform-origin: left center;
|
||||
-moz-transform-origin: left center;
|
||||
-o-transform-origin: left center;
|
||||
transform-origin: left center;
|
||||
}
|
||||
|
||||
#hamburger span:nth-child(2) {
|
||||
top: 7px;
|
||||
-webkit-transform-origin: left center;
|
||||
-moz-transform-origin: left center;
|
||||
-o-transform-origin: left center;
|
||||
transform-origin: left center;
|
||||
}
|
||||
|
||||
#hamburger span:nth-child(3) {
|
||||
top: 13px;
|
||||
-webkit-transform-origin: left center;
|
||||
-moz-transform-origin: left center;
|
||||
-o-transform-origin: left center;
|
||||
transform-origin: left center;
|
||||
}
|
||||
|
||||
#hamburger.open span:nth-child(1) {
|
||||
-webkit-transform: rotate(45deg);
|
||||
-moz-transform: rotate(45deg);
|
||||
-o-transform: rotate(45deg);
|
||||
transform: rotate(45deg);
|
||||
top: 1;
|
||||
left: 3px;
|
||||
}
|
||||
|
||||
#hamburger.open span:nth-child(2) {
|
||||
width: 0%;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
#hamburger.open span:nth-child(3) {
|
||||
-webkit-transform: rotate(-45deg);
|
||||
-moz-transform: rotate(-45deg);
|
||||
-o-transform: rotate(-45deg);
|
||||
transform: rotate(-45deg);
|
||||
top: 14px;
|
||||
left: 3px;
|
||||
}
|
||||
@charset "UTF-8";
|
||||
@font-face {
|
||||
font-family: "fontcustom";
|
||||
src: url("fonts/fontcustom_511999ab39d2316d71a49245451dd766.eot");
|
||||
src: url("fonts/fontcustom_511999ab39d2316d71a49245451dd766.eot?#iefix")
|
||||
format("embedded-opentype"),
|
||||
url("fonts/fontcustom_511999ab39d2316d71a49245451dd766.woff") format("woff"),
|
||||
url("fonts/fontcustom_511999ab39d2316d71a49245451dd766.ttf")
|
||||
format("truetype"),
|
||||
url("fonts/fontcustom_511999ab39d2316d71a49245451dd766.svg#fontcustom")
|
||||
format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
||||
@font-face {
|
||||
font-family: "fontcustom";
|
||||
src: url("fonts/fontcustom_511999ab39d2316d71a49245451dd766.svg#fontcustom")
|
||||
format("svg");
|
||||
}
|
||||
}
|
||||
[data-icon]:before {
|
||||
content: attr(data-icon);
|
||||
display: inline-block;
|
||||
font-family: "fontcustom";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
line-height: 1;
|
||||
text-decoration: inherit;
|
||||
text-rendering: optimizeLegibility;
|
||||
text-transform: none;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.icon-arrow:before,
|
||||
.header .breadcrumb ul li:not(:last-child) i:before,
|
||||
.icon-degraded:before,
|
||||
.icon-help:before,
|
||||
.icon-menu:before,
|
||||
.icon-operational:before,
|
||||
.icon-outage:before,
|
||||
.icon-partial:before {
|
||||
display: inline-block;
|
||||
font-family: "fontcustom";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
line-height: 1;
|
||||
text-decoration: inherit;
|
||||
text-rendering: optimizeLegibility;
|
||||
text-transform: none;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.icon-arrow:before,
|
||||
.header .breadcrumb ul li:not(:last-child) i:before {
|
||||
content: "";
|
||||
}
|
||||
|
||||
.icon-degraded:before {
|
||||
content: "";
|
||||
}
|
||||
|
||||
.icon-help:before {
|
||||
content: "";
|
||||
}
|
||||
|
||||
.icon-menu:before {
|
||||
content: "";
|
||||
}
|
||||
|
||||
.icon-operational:before {
|
||||
content: "";
|
||||
}
|
||||
|
||||
.icon-outage:before {
|
||||
content: "";
|
||||
}
|
||||
|
||||
.icon-partial:before {
|
||||
content: "";
|
||||
}
|
||||
|
||||
.green {
|
||||
background-color: #c7e58f;
|
||||
color: #006837;
|
||||
}
|
||||
|
||||
.yellow {
|
||||
background-color: #fff1ac;
|
||||
color: #9c8100;
|
||||
}
|
||||
|
||||
.orange {
|
||||
background-color: #ffddad;
|
||||
color: #994e17;
|
||||
}
|
||||
|
||||
.red {
|
||||
background-color: #ffd8dc;
|
||||
color: #9c1a2c;
|
||||
}
|
||||
|
||||
.grey {
|
||||
background-color: #cfcfcf;
|
||||
color: #4f4f4f;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Avenir Next", "Avenir", "Roboto", "Helvetica", sans-serif;
|
||||
color: #666666;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
}
|
||||
@media screen and (max-width: 460px) {
|
||||
body {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p {
|
||||
font-weight: 400;
|
||||
line-height: 1.5em;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.75em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.25em;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 0.75em;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1em;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
b {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
code,
|
||||
pre {
|
||||
font-size: 1em;
|
||||
padding: 2px 10px 3px 10px;
|
||||
border-radius: 5px;
|
||||
background-color: #3b3b3b;
|
||||
color: #f3f3f3;
|
||||
font-family: "Source Code Pro", "Ubuntu Mono", "Consolas", unicode;
|
||||
}
|
||||
|
||||
pre {
|
||||
padding: 9px 10px;
|
||||
margin: 2em 0;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: none;
|
||||
height: 1px;
|
||||
margin: 2em 0;
|
||||
background-color: #bababa;
|
||||
}
|
||||
|
||||
.groups li i {
|
||||
font-size: 10px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
@media screen and (max-width: 460px) {
|
||||
.groups li i {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
.groups li i.icon-help:before {
|
||||
padding-left: 5px;
|
||||
}
|
||||
i.icon-operational:before {
|
||||
color: #8cc63f;
|
||||
}
|
||||
i.icon-degraded:before {
|
||||
color: #f7d21b;
|
||||
}
|
||||
i.icon-partial:before {
|
||||
color: #fc9a40;
|
||||
}
|
||||
i.icon-outage:before {
|
||||
color: #d1434f;
|
||||
}
|
||||
|
||||
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #666666;
|
||||
}
|
||||
a:hover {
|
||||
color: #000000;
|
||||
}
|
||||
a:active {
|
||||
color: #00adee;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
|
||||
@media screen and (max-width: 640px) {
|
||||
body.open {
|
||||
max-width: 100vw;
|
||||
max-height: 100vh;
|
||||
overflow-x: hidden;
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
|
||||
.content,
|
||||
.header,
|
||||
.content-area {
|
||||
position: static;
|
||||
}
|
||||
|
||||
.header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
}
|
||||
@media screen and (max-width: 320px) {
|
||||
.header {
|
||||
z-index: 99999;
|
||||
}
|
||||
}
|
||||
|
||||
.content-area {
|
||||
position: static;
|
||||
}
|
||||
.content-area section {
|
||||
width: 100%;
|
||||
clear: both;
|
||||
}
|
||||
@media screen and (max-width: 320px) {
|
||||
.open .content-area {
|
||||
display: none;
|
||||
max-height: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.overlay {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
-webkit-backface-visibility: hidden;
|
||||
z-index: 1;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
min-height: 100vh;
|
||||
height: 100vh;
|
||||
width: 300px;
|
||||
margin-left: -300px;
|
||||
background-color: rgba(243, 243, 243, 0.75);
|
||||
}
|
||||
.open .overlay {
|
||||
box-shadow: 2px 0 15px -2px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
@media screen and (max-width: 320px) {
|
||||
.overlay {
|
||||
margin-left: 0;
|
||||
width: 100vw;
|
||||
height: auto;
|
||||
position: static;
|
||||
display: block;
|
||||
clear: both;
|
||||
display: none;
|
||||
}
|
||||
.open .overlay {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.groups {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: static;
|
||||
}
|
||||
.overlay .groups {
|
||||
height: 100vh;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
@media screen and (max-width: 320px) {
|
||||
.overlay .groups {
|
||||
height: auto;
|
||||
overflow: auto;
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
.groups li {
|
||||
height: 50px;
|
||||
min-height: 50px;
|
||||
display: -webkit-flex;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: -moz-box;
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-align-items: center;
|
||||
align-items: center;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
.overlay .groups li {
|
||||
background-color: #f3f3f3;
|
||||
padding: 15px 20px;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
.overlay .groups li.active {
|
||||
background-color: #e7e7e7;
|
||||
}
|
||||
.overlay .groups li:first-of-type {
|
||||
min-height: 57px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.overlay .groups li:hover {
|
||||
background-color: #ededed;
|
||||
cursor: pointer;
|
||||
}
|
||||
[rel="groups"] .groups li {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
display: inline-block;
|
||||
background-color: #ffffff;
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 5px;
|
||||
margin: 0;
|
||||
margin-bottom: 15px;
|
||||
padding: 15px 20px;
|
||||
float: left;
|
||||
width: 49%;
|
||||
}
|
||||
[rel="groups"] .groups li:hover {
|
||||
background-color: #fbfbfb;
|
||||
cursor: pointer;
|
||||
}
|
||||
[rel="groups"] .groups li:nth-child(2n) {
|
||||
margin-left: 2%;
|
||||
}
|
||||
@media screen and (max-width: 640px) {
|
||||
[rel="groups"] .groups li {
|
||||
width: 100%;
|
||||
}
|
||||
[rel="groups"] .groups li:nth-child(2n) {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 640px) {
|
||||
[rel="report"] {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
[rel="report"] .mobile {
|
||||
display: -webkit-flex;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: -moz-box;
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-flex-direction: column;
|
||||
flex-direction: column;
|
||||
}
|
||||
[rel="report"] .mobile .block {
|
||||
order: 1;
|
||||
-webkit-order: 1;
|
||||
}
|
||||
[rel="report"] .mobile .links {
|
||||
order: 99;
|
||||
-webkit-order: 99;
|
||||
}
|
||||
[rel="report"] .mobile .notification {
|
||||
order: -99;
|
||||
-webkit-order: -99;
|
||||
}
|
||||
[rel="report"] .web {
|
||||
display: -webkit-flex;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: -moz-box;
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-flex-direction: row;
|
||||
flex-direction: row;
|
||||
}
|
||||
[rel="report"] .web aside {
|
||||
width: 29%;
|
||||
margin-right: 2%;
|
||||
}
|
||||
[rel="report"] .web summary {
|
||||
width: 71%;
|
||||
}
|
||||
@media screen and (max-width: 640px) {
|
||||
[rel="report"] .web aside,
|
||||
[rel="report"] .web summary {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
[rel="report"] .block {
|
||||
background-color: #ffffff;
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 5px;
|
||||
margin-bottom: 15px;
|
||||
overflow: hidden;
|
||||
}
|
||||
[rel="report"] .block .bit {
|
||||
padding: 20px;
|
||||
}
|
||||
[rel="report"] .block .bit:not(:last-child) {
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
[rel="report"] .block.links .bit:hover {
|
||||
cursor: pointer;
|
||||
background-color: #fbfbfb;
|
||||
}
|
||||
[rel="report"] .block h6 {
|
||||
color: #bababa;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
268
public/assets/css/servers.css
vendored
Executable file
268
public/assets/css/servers.css
vendored
Executable file
@@ -0,0 +1,268 @@
|
||||
/* RESET STYLES & HELPER CLASSES
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
:root {
|
||||
--level-1: #8dccad;
|
||||
--level-2: #f5cc7f;
|
||||
--level-3: #7b9fe0;
|
||||
--level-4: #f27c8d;
|
||||
--black: black;
|
||||
}
|
||||
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 50px 0 100px;
|
||||
text-align: center;
|
||||
font-family: "Inter", sans-serif;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1000px;
|
||||
padding: 0 10px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.rectangle {
|
||||
position: relative;
|
||||
padding: 20px;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
|
||||
/* LEVEL-1 STYLES
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.level-1 {
|
||||
width: 50%;
|
||||
margin: 0 auto 40px;
|
||||
background: var(--level-1);
|
||||
}
|
||||
|
||||
.level-1::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 2px;
|
||||
height: 20px;
|
||||
background: var(--black);
|
||||
}
|
||||
|
||||
|
||||
/* LEVEL-2 STYLES
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.level-2-wrapper {
|
||||
position: relative;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
|
||||
.level-2-wrapper::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: -20px;
|
||||
left: 25%;
|
||||
width: 50%;
|
||||
height: 2px;
|
||||
background: var(--black);
|
||||
}
|
||||
|
||||
.level-2-wrapper::after {
|
||||
display: none;
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: -20px;
|
||||
bottom: -20px;
|
||||
width: calc(100% + 20px);
|
||||
height: 2px;
|
||||
background: var(--black);
|
||||
}
|
||||
|
||||
.level-2-wrapper li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.level-2-wrapper > li::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 100%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 2px;
|
||||
height: 20px;
|
||||
background: var(--black);
|
||||
}
|
||||
|
||||
.level-2 {
|
||||
width: 70%;
|
||||
margin: 0 auto 40px;
|
||||
background: var(--level-2);
|
||||
}
|
||||
|
||||
.level-2::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 2px;
|
||||
height: 20px;
|
||||
background: var(--black);
|
||||
}
|
||||
|
||||
.level-2::after {
|
||||
display: none;
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0%;
|
||||
transform: translate(-100%, -50%);
|
||||
width: 20px;
|
||||
height: 2px;
|
||||
background: var(--black);
|
||||
}
|
||||
|
||||
|
||||
/* LEVEL-3 STYLES
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.level-3-wrapper {
|
||||
position: relative;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-column-gap: 20px;
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.level-3-wrapper::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: -20px;
|
||||
left: calc(25% - 5px);
|
||||
width: calc(50% + 10px);
|
||||
height: 2px;
|
||||
background: var(--black);
|
||||
}
|
||||
|
||||
.level-3-wrapper > li::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -100%);
|
||||
width: 2px;
|
||||
height: 20px;
|
||||
background: var(--black);
|
||||
}
|
||||
|
||||
.level-3 {
|
||||
margin-bottom: 20px;
|
||||
background: var(--level-3);
|
||||
}
|
||||
|
||||
|
||||
/* LEVEL-4 STYLES
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.level-4-wrapper {
|
||||
position: relative;
|
||||
width: 80%;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.level-4-wrapper::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: -20px;
|
||||
left: -20px;
|
||||
width: 2px;
|
||||
height: calc(100% + 20px);
|
||||
background: var(--black);
|
||||
}
|
||||
|
||||
.level-4-wrapper li + li {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.level-4 {
|
||||
font-weight: normal;
|
||||
background: var(--level-4);
|
||||
}
|
||||
|
||||
.level-4::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0%;
|
||||
transform: translate(-100%, -50%);
|
||||
width: 20px;
|
||||
height: 2px;
|
||||
background: var(--black);
|
||||
}
|
||||
|
||||
|
||||
/* MQ STYLES
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
@media screen and (max-width: 700px) {
|
||||
.rectangle {
|
||||
padding: 20px 10px;
|
||||
}
|
||||
|
||||
.level-1,
|
||||
.level-2 {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.level-1 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.level-1::before,
|
||||
.level-2-wrapper > li::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.level-2-wrapper,
|
||||
.level-2-wrapper::after,
|
||||
.level-2::after {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.level-2-wrapper {
|
||||
width: 90%;
|
||||
margin-left: 10%;
|
||||
}
|
||||
|
||||
.level-2-wrapper::before {
|
||||
left: -20px;
|
||||
width: 2px;
|
||||
height: calc(100% + 40px);
|
||||
}
|
||||
|
||||
.level-2-wrapper > li:not(:first-child) {
|
||||
margin-top: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* FOOTER
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– */
|
||||
.page-footer {
|
||||
position: fixed;
|
||||
right: 0;
|
||||
bottom: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.page-footer a {
|
||||
margin-left: 4px;
|
||||
}
|
||||
686
public/assets/css/sweetalert.css
vendored
Executable file
686
public/assets/css/sweetalert.css
vendored
Executable file
@@ -0,0 +1,686 @@
|
||||
@keyframes showSweetAlert {
|
||||
0% {
|
||||
transform: scale(0.7);
|
||||
}
|
||||
45% {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
80% {
|
||||
transform: scale(0.95);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
@keyframes hideSweetAlert {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
100% {
|
||||
transform: scale(0.5);
|
||||
}
|
||||
}
|
||||
@keyframes slideFromTop {
|
||||
0% {
|
||||
top: 0%;
|
||||
}
|
||||
100% {
|
||||
top: 50%;
|
||||
}
|
||||
}
|
||||
@keyframes slideToTop {
|
||||
0% {
|
||||
top: 50%;
|
||||
}
|
||||
100% {
|
||||
top: 0%;
|
||||
}
|
||||
}
|
||||
@keyframes slideFromBottom {
|
||||
0% {
|
||||
top: 70%;
|
||||
}
|
||||
100% {
|
||||
top: 50%;
|
||||
}
|
||||
}
|
||||
@keyframes slideToBottom {
|
||||
0% {
|
||||
top: 50%;
|
||||
}
|
||||
100% {
|
||||
top: 70%;
|
||||
}
|
||||
}
|
||||
.showSweetAlert {
|
||||
animation: showSweetAlert 0.3s;
|
||||
}
|
||||
.showSweetAlert[data-animation=none] {
|
||||
animation: none;
|
||||
}
|
||||
.showSweetAlert[data-animation=slide-from-top] {
|
||||
animation: slideFromTop 0.3s;
|
||||
}
|
||||
.showSweetAlert[data-animation=slide-from-bottom] {
|
||||
animation: slideFromBottom 0.3s;
|
||||
}
|
||||
.hideSweetAlert {
|
||||
animation: hideSweetAlert 0.3s;
|
||||
}
|
||||
.hideSweetAlert[data-animation=none] {
|
||||
animation: none;
|
||||
}
|
||||
.hideSweetAlert[data-animation=slide-from-top] {
|
||||
animation: slideToTop 0.3s;
|
||||
}
|
||||
.hideSweetAlert[data-animation=slide-from-bottom] {
|
||||
animation: slideToBottom 0.3s;
|
||||
}
|
||||
@keyframes animateSuccessTip {
|
||||
0% {
|
||||
width: 0;
|
||||
left: 1px;
|
||||
top: 19px;
|
||||
}
|
||||
54% {
|
||||
width: 0;
|
||||
left: 1px;
|
||||
top: 19px;
|
||||
}
|
||||
70% {
|
||||
width: 50px;
|
||||
left: -8px;
|
||||
top: 37px;
|
||||
}
|
||||
84% {
|
||||
width: 17px;
|
||||
left: 21px;
|
||||
top: 48px;
|
||||
}
|
||||
100% {
|
||||
width: 25px;
|
||||
left: 14px;
|
||||
top: 45px;
|
||||
}
|
||||
}
|
||||
@keyframes animateSuccessLong {
|
||||
0% {
|
||||
width: 0;
|
||||
right: 46px;
|
||||
top: 54px;
|
||||
}
|
||||
65% {
|
||||
width: 0;
|
||||
right: 46px;
|
||||
top: 54px;
|
||||
}
|
||||
84% {
|
||||
width: 55px;
|
||||
right: 0px;
|
||||
top: 35px;
|
||||
}
|
||||
100% {
|
||||
width: 47px;
|
||||
right: 8px;
|
||||
top: 38px;
|
||||
}
|
||||
}
|
||||
@keyframes rotatePlaceholder {
|
||||
0% {
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
5% {
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
12% {
|
||||
transform: rotate(-405deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(-405deg);
|
||||
}
|
||||
}
|
||||
.animateSuccessTip {
|
||||
animation: animateSuccessTip 0.75s;
|
||||
}
|
||||
.animateSuccessLong {
|
||||
animation: animateSuccessLong 0.75s;
|
||||
}
|
||||
.sa-icon.sa-success.animate::after {
|
||||
animation: rotatePlaceholder 4.25s ease-in;
|
||||
}
|
||||
@keyframes animateErrorIcon {
|
||||
0% {
|
||||
transform: rotateX(100deg);
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
transform: rotateX(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.animateErrorIcon {
|
||||
animation: animateErrorIcon 0.5s;
|
||||
}
|
||||
@keyframes animateXMark {
|
||||
0% {
|
||||
transform: scale(0.4);
|
||||
margin-top: 26px;
|
||||
opacity: 0;
|
||||
}
|
||||
50% {
|
||||
transform: scale(0.4);
|
||||
margin-top: 26px;
|
||||
opacity: 0;
|
||||
}
|
||||
80% {
|
||||
transform: scale(1.15);
|
||||
margin-top: -6px;
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
margin-top: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.animateXMark {
|
||||
animation: animateXMark 0.5s;
|
||||
}
|
||||
@keyframes pulseWarning {
|
||||
0% {
|
||||
border-color: #F8D486;
|
||||
}
|
||||
100% {
|
||||
border-color: #F8BB86;
|
||||
}
|
||||
}
|
||||
.pulseWarning {
|
||||
animation: pulseWarning 0.75s infinite alternate;
|
||||
}
|
||||
@keyframes pulseWarningIns {
|
||||
0% {
|
||||
background-color: #F8D486;
|
||||
}
|
||||
100% {
|
||||
background-color: #F8BB86;
|
||||
}
|
||||
}
|
||||
.pulseWarningIns {
|
||||
animation: pulseWarningIns 0.75s infinite alternate;
|
||||
}
|
||||
@keyframes rotate-loading {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
body.stop-scrolling {
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
.sweet-overlay {
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
display: none;
|
||||
z-index: 1040;
|
||||
}
|
||||
.sweet-alert {
|
||||
background-color: #ffffff;
|
||||
width: 478px;
|
||||
padding: 17px;
|
||||
border-radius: 5px;
|
||||
text-align: center;
|
||||
position: fixed;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin-left: -256px;
|
||||
margin-top: -200px;
|
||||
overflow: hidden;
|
||||
display: none;
|
||||
z-index: 2000;
|
||||
}
|
||||
@media all and (max-width: 767px) {
|
||||
.sweet-alert {
|
||||
width: auto;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
left: 15px;
|
||||
right: 15px;
|
||||
}
|
||||
}
|
||||
.sweet-alert .form-group {
|
||||
display: none;
|
||||
}
|
||||
.sweet-alert .form-group .sa-input-error {
|
||||
display: none;
|
||||
}
|
||||
.sweet-alert.show-input .form-group {
|
||||
display: block;
|
||||
}
|
||||
.sweet-alert .sa-confirm-button-container {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
.sweet-alert .la-ball-fall {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin-left: -27px;
|
||||
margin-top: -9px;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
.sweet-alert button[disabled] {
|
||||
opacity: .6;
|
||||
cursor: default;
|
||||
}
|
||||
.sweet-alert button.confirm[disabled] {
|
||||
color: transparent;
|
||||
}
|
||||
.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
transition-delay: 0s;
|
||||
}
|
||||
.sweet-alert .sa-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border: 4px solid gray;
|
||||
border-radius: 50%;
|
||||
margin: 20px auto;
|
||||
position: relative;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-error {
|
||||
border-color: #d43f3a;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-error .sa-x-mark {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-error .sa-line {
|
||||
position: absolute;
|
||||
height: 5px;
|
||||
width: 47px;
|
||||
background-color: #d9534f;
|
||||
display: block;
|
||||
top: 37px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
|
||||
transform: rotate(45deg);
|
||||
left: 17px;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
|
||||
transform: rotate(-45deg);
|
||||
right: 16px;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-warning {
|
||||
border-color: #eea236;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-warning .sa-body {
|
||||
position: absolute;
|
||||
width: 5px;
|
||||
height: 47px;
|
||||
left: 50%;
|
||||
top: 10px;
|
||||
border-radius: 2px;
|
||||
margin-left: -2px;
|
||||
background-color: #f0ad4e;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-warning .sa-dot {
|
||||
position: absolute;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
border-radius: 50%;
|
||||
margin-left: -3px;
|
||||
left: 50%;
|
||||
bottom: 10px;
|
||||
background-color: #f0ad4e;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-info {
|
||||
border-color: #46b8da;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-info::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 5px;
|
||||
height: 29px;
|
||||
left: 50%;
|
||||
bottom: 17px;
|
||||
border-radius: 2px;
|
||||
margin-left: -2px;
|
||||
background-color: #5bc0de;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-info::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
border-radius: 50%;
|
||||
margin-left: -3px;
|
||||
top: 19px;
|
||||
background-color: #5bc0de;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-success {
|
||||
border-color: #4cae4c;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-success::before,
|
||||
.sweet-alert .sa-icon.sa-success::after {
|
||||
content: '';
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
width: 60px;
|
||||
height: 120px;
|
||||
background: #ffffff;
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-success::before {
|
||||
border-radius: 120px 0 0 120px;
|
||||
top: -7px;
|
||||
left: -33px;
|
||||
transform: rotate(-45deg);
|
||||
transform-origin: 60px 60px;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-success::after {
|
||||
border-radius: 0 120px 120px 0;
|
||||
top: -11px;
|
||||
left: 30px;
|
||||
transform: rotate(-45deg);
|
||||
transform-origin: 0px 60px;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-success .sa-placeholder {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border: 4px solid rgba(92, 184, 92, 0.2);
|
||||
border-radius: 50%;
|
||||
box-sizing: content-box;
|
||||
position: absolute;
|
||||
left: -4px;
|
||||
top: -4px;
|
||||
z-index: 2;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-success .sa-fix {
|
||||
width: 5px;
|
||||
height: 90px;
|
||||
background-color: #ffffff;
|
||||
position: absolute;
|
||||
left: 28px;
|
||||
top: 8px;
|
||||
z-index: 1;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-success .sa-line {
|
||||
height: 5px;
|
||||
background-color: #5cb85c;
|
||||
display: block;
|
||||
border-radius: 2px;
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
|
||||
width: 25px;
|
||||
left: 14px;
|
||||
top: 46px;
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
|
||||
width: 47px;
|
||||
right: 8px;
|
||||
top: 38px;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
.sweet-alert .sa-icon.sa-custom {
|
||||
background-size: contain;
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.sweet-alert .btn-default:focus {
|
||||
border-color: #cccccc;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(204, 204, 204, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(204, 204, 204, 0.6);
|
||||
}
|
||||
.sweet-alert .btn-success:focus {
|
||||
border-color: #4cae4c;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(76, 174, 76, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(76, 174, 76, 0.6);
|
||||
}
|
||||
.sweet-alert .btn-info:focus {
|
||||
border-color: #46b8da;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 184, 218, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 184, 218, 0.6);
|
||||
}
|
||||
.sweet-alert .btn-danger:focus {
|
||||
border-color: #d43f3a;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(212, 63, 58, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(212, 63, 58, 0.6);
|
||||
}
|
||||
.sweet-alert .btn-warning:focus {
|
||||
border-color: #eea236;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(238, 162, 54, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(238, 162, 54, 0.6);
|
||||
}
|
||||
.sweet-alert button::-moz-focus-inner {
|
||||
border: 0;
|
||||
}
|
||||
/*!
|
||||
* Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
|
||||
* Copyright 2015 Daniel Cardoso <@DanielCardoso>
|
||||
* Licensed under MIT
|
||||
*/
|
||||
.la-ball-fall,
|
||||
.la-ball-fall > div {
|
||||
position: relative;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.la-ball-fall {
|
||||
display: block;
|
||||
font-size: 0;
|
||||
color: #fff;
|
||||
}
|
||||
.la-ball-fall.la-dark {
|
||||
color: #333;
|
||||
}
|
||||
.la-ball-fall > div {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
background-color: currentColor;
|
||||
border: 0 solid currentColor;
|
||||
}
|
||||
.la-ball-fall {
|
||||
width: 54px;
|
||||
height: 18px;
|
||||
}
|
||||
.la-ball-fall > div {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
margin: 4px;
|
||||
border-radius: 100%;
|
||||
opacity: 0;
|
||||
-webkit-animation: ball-fall 1s ease-in-out infinite;
|
||||
-moz-animation: ball-fall 1s ease-in-out infinite;
|
||||
-o-animation: ball-fall 1s ease-in-out infinite;
|
||||
animation: ball-fall 1s ease-in-out infinite;
|
||||
}
|
||||
.la-ball-fall > div:nth-child(1) {
|
||||
-webkit-animation-delay: -200ms;
|
||||
-moz-animation-delay: -200ms;
|
||||
-o-animation-delay: -200ms;
|
||||
animation-delay: -200ms;
|
||||
}
|
||||
.la-ball-fall > div:nth-child(2) {
|
||||
-webkit-animation-delay: -100ms;
|
||||
-moz-animation-delay: -100ms;
|
||||
-o-animation-delay: -100ms;
|
||||
animation-delay: -100ms;
|
||||
}
|
||||
.la-ball-fall > div:nth-child(3) {
|
||||
-webkit-animation-delay: 0ms;
|
||||
-moz-animation-delay: 0ms;
|
||||
-o-animation-delay: 0ms;
|
||||
animation-delay: 0ms;
|
||||
}
|
||||
.la-ball-fall.la-sm {
|
||||
width: 26px;
|
||||
height: 8px;
|
||||
}
|
||||
.la-ball-fall.la-sm > div {
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
margin: 2px;
|
||||
}
|
||||
.la-ball-fall.la-2x {
|
||||
width: 108px;
|
||||
height: 36px;
|
||||
}
|
||||
.la-ball-fall.la-2x > div {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin: 8px;
|
||||
}
|
||||
.la-ball-fall.la-3x {
|
||||
width: 162px;
|
||||
height: 54px;
|
||||
}
|
||||
.la-ball-fall.la-3x > div {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin: 12px;
|
||||
}
|
||||
/*
|
||||
* Animation
|
||||
*/
|
||||
@-webkit-keyframes ball-fall {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-145%);
|
||||
transform: translateY(-145%);
|
||||
}
|
||||
10% {
|
||||
opacity: .5;
|
||||
}
|
||||
20% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
80% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
90% {
|
||||
opacity: .5;
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(145%);
|
||||
transform: translateY(145%);
|
||||
}
|
||||
}
|
||||
@-moz-keyframes ball-fall {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(-145%);
|
||||
transform: translateY(-145%);
|
||||
}
|
||||
10% {
|
||||
opacity: .5;
|
||||
}
|
||||
20% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
80% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
90% {
|
||||
opacity: .5;
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
-moz-transform: translateY(145%);
|
||||
transform: translateY(145%);
|
||||
}
|
||||
}
|
||||
@-o-keyframes ball-fall {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(-145%);
|
||||
transform: translateY(-145%);
|
||||
}
|
||||
10% {
|
||||
opacity: .5;
|
||||
}
|
||||
20% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
80% {
|
||||
opacity: 1;
|
||||
-o-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
90% {
|
||||
opacity: .5;
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
-o-transform: translateY(145%);
|
||||
transform: translateY(145%);
|
||||
}
|
||||
}
|
||||
@keyframes ball-fall {
|
||||
0% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(-145%);
|
||||
-moz-transform: translateY(-145%);
|
||||
-o-transform: translateY(-145%);
|
||||
transform: translateY(-145%);
|
||||
}
|
||||
10% {
|
||||
opacity: .5;
|
||||
}
|
||||
20% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
-moz-transform: translateY(0);
|
||||
-o-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
80% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateY(0);
|
||||
-moz-transform: translateY(0);
|
||||
-o-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
90% {
|
||||
opacity: .5;
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateY(145%);
|
||||
-moz-transform: translateY(145%);
|
||||
-o-transform: translateY(145%);
|
||||
transform: translateY(145%);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user