trim ssh keys and format css

This commit is contained in:
root
2019-09-16 19:24:44 -04:00
parent f0cbce70a4
commit 3acfca56c5
4 changed files with 111 additions and 72 deletions

125
style.css
View File

@@ -1,64 +1,103 @@
* {font-size:13pt;font-weight:normal;}
/* {font-size:13pt;font-weight:normal;} */
table {border-collapse:collapse;}
td {border:6px double darkorange;padding:10px;}
ol {margin-left:1em;}
body {
margin:1em;
background:000;
font-family:'courier new';
color:darkorange;
background:#000400;
table {
border-collapse: collapse;
}
a {background:darkorange;color:#223;font-weight:bold;padding-right:.25em;}
.advisory {background:darkorange;color:#223;font-weight:bold;padding-right:.25em;}
h1 {text-transform:uppercase;font-weight:bold;
color:#000400; background:darkorange;
td {
border: 6px double darkorange;
padding: 10px;
}
ol {
margin-left: 1em;
}
body {
margin: 1em;
background: 000;
font-family: "courier new", monospace;
color: darkorange;
background: #000400;
}
a {
background: darkorange;
color: #223;
font-weight: bold;
padding-right: 0.25em;
}
.advisory {
background: darkorange;
color: #223;
font-weight: bold;
padding-right: 0.25em;
}
h1 {
text-transform: uppercase;
font-weight: bold;
color: #000400;
background: darkorange;
}
.advisory {
-webkit-animation-name: blinker;
-webkit-animation-duration: 8s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-webkit-animation-name: blinker;
-webkit-animation-duration: 8s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: blinker;
-moz-animation-duration: 8s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;
-moz-animation-name: blinker;
-moz-animation-duration: 8s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;
animation-name: blinker;
animation-duration: 8s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-name: blinker;
animation-duration: 8s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
input[type="text"], textarea {
background-color : #333;
color: darkorange;
input[type="text"],
textarea {
background-color: #333;
color: darkorange;
}
div.alert-warning {
background-color: darkred;
background-color: darkred;
}
div.alert-success {
background-color: darkgreen;
background-color: darkgreen;
}
@-moz-keyframes blinker {
0% { opacity: 1.0; }
50% { opacity: 0.75; }
100% { opacity: 1.0; }
@-moz-keyframes blinker {
0% {
opacity: 1;
}
50% {
opacity: 0.75;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes blinker {
0% { opacity: 1.0; }
50% { opacity: 0.75; }
100% { opacity: 1.0; }
@-webkit-keyframes blinker {
0% {
opacity: 1;
}
50% {
opacity: 0.75;
}
100% {
opacity: 1;
}
}
@keyframes blinker {
0% { opacity: 1.0; }
50% { opacity: 0.75; }
100% { opacity: 1.0; }
@keyframes blinker {
0% {
opacity: 1;
}
50% {
opacity: 0.75;
}
100% {
opacity: 1;
}
}