Archive: Namaste PHP AMQP framework v1.0 (2017-2020)
952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
This commit is contained in:
193
utilities/logger.css
Normal file
193
utilities/logger.css
Normal file
@@ -0,0 +1,193 @@
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #AAA url('./images/lgrey064.jpg') repeat top left scroll;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-family: verdanna, arial, sans-serif;
|
||||
}
|
||||
|
||||
div.title {
|
||||
margin: 0;
|
||||
margin-top: 20px;
|
||||
position: relative;
|
||||
width: 1000px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
font-size: 20px;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
div.container {
|
||||
border: 1px solid black;
|
||||
margin: 0;
|
||||
margin-top: 20px;
|
||||
padding: 10px;
|
||||
position: relative;
|
||||
width: 1000px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
background: url('./images/lblue047.gif') repeat;
|
||||
box-shadow: 3px 3px 4px #000;
|
||||
}
|
||||
|
||||
div.rowMeta {
|
||||
margin: 0;
|
||||
width: 900px;
|
||||
padding-left: 10px;
|
||||
text-align: left;
|
||||
position: relative;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
color: #006400;
|
||||
}
|
||||
|
||||
div.rowData {
|
||||
margin: 0;
|
||||
padding-left: 25px;
|
||||
width: 900px;
|
||||
text-align: left;
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.rowText {
|
||||
margin : 0;
|
||||
padding-left: 25px;
|
||||
width: 900px;
|
||||
text-align: left;
|
||||
position: relative;
|
||||
font-size: 16px;
|
||||
font-weight: normal;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.rowTextGray {
|
||||
margin : 0;
|
||||
padding-left: 25px;
|
||||
width: 900px;
|
||||
text-align: left;
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
color: gray;
|
||||
}
|
||||
|
||||
div.rowHist {
|
||||
margin: 0;
|
||||
padding-left: 50px;
|
||||
width: 900px;
|
||||
text-align: left;
|
||||
position: relative;
|
||||
font-size: 10px;
|
||||
font-weight: normal;
|
||||
color: black;
|
||||
}
|
||||
|
||||
span.gray {
|
||||
color : gray;
|
||||
}
|
||||
span.green {
|
||||
color : green;
|
||||
}
|
||||
span.red {
|
||||
color : red;
|
||||
}
|
||||
|
||||
.required {
|
||||
color : red;
|
||||
font-size: xx-small;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.rowSuccess {
|
||||
margin : 0;
|
||||
padding-left: 30px;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color : green;
|
||||
}
|
||||
|
||||
div.rowError {
|
||||
margin: 0;
|
||||
padding-left: 30px;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: #ff0000;
|
||||
}
|
||||
|
||||
a.delete {
|
||||
background-image: url('./images/delete-icon.png');
|
||||
background-repeat:no-repeat;
|
||||
background-size: 16px auto;
|
||||
display:inline-block;
|
||||
position:absolute;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
/*cursor: pointer;*/
|
||||
}
|
||||
|
||||
a.cachekey {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
span.highlight {
|
||||
background-color: yellow;
|
||||
}
|
||||
|
||||
.buttonCenter {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.omeSubmit {
|
||||
-moz-box-shadow:inset 0px 1px 0px 0px #bbdaf7;
|
||||
-webkit-box-shadow:inset 0px 1px 0px 0px #bbdaf7;
|
||||
box-shadow:inset 0px 1px 0px 0px #bbdaf7;
|
||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #378de5) );
|
||||
background:-moz-linear-gradient( center top, #79bbff 5%, #378de5 100% );
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#378de5');
|
||||
background-color:#79bbff;
|
||||
-webkit-border-top-left-radius:20px;
|
||||
-moz-border-radius-topleft:20px;
|
||||
border-top-left-radius:20px;
|
||||
-webkit-border-top-right-radius:0px;
|
||||
-moz-border-radius-topright:0px;
|
||||
border-top-right-radius:0px;
|
||||
-webkit-border-bottom-right-radius:20px;
|
||||
-moz-border-radius-bottomright:20px;
|
||||
border-bottom-right-radius:20px;
|
||||
-webkit-border-bottom-left-radius:0px;
|
||||
-moz-border-radius-bottomleft:0px;
|
||||
border-bottom-left-radius:0px;
|
||||
text-indent:0;
|
||||
border:1px solid #84bbf3;
|
||||
display:inline-block;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:15px;
|
||||
font-weight:bold;
|
||||
font-style:normal;
|
||||
height:40px;
|
||||
line-height:40px;
|
||||
width:100px;
|
||||
text-decoration:none;
|
||||
text-align:center;
|
||||
text-shadow:1px 1px 0px #528ecc;
|
||||
}
|
||||
.omeSubmit:hover {
|
||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #378de5), color-stop(1, #79bbff) );
|
||||
background:-moz-linear-gradient( center top, #378de5 5%, #79bbff 100% );
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#378de5', endColorstr='#79bbff');
|
||||
background-color:#378de5;
|
||||
}.omeSubmit:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user