Skip to content

Instantly share code, notes, and snippets.

@kmf
Created June 28, 2022 06:52
Show Gist options
  • Save kmf/0a5ae7fe59f2de41e48ff44ecdd29a9b to your computer and use it in GitHub Desktop.
Save kmf/0a5ae7fe59f2de41e48ff44ecdd29a9b to your computer and use it in GitHub Desktop.
Ansible Self Healing Demo
html, body{
-webkit-font-smoothing:antialiased;
font-family: "Comic Sans MS", sans-serif;
line-height:1.4;
margin:0 auto;
max-width:860px;
height: 100%;
color: #30a3b7;
}
.center{
text-align: center;
}
.intro{
font-size:4em;
}
.max {
display: block;
width: 860px;
word-wrap: break-word;
}
.bg1{
background-image: url("https://i.imgur.com/YUPql5N.gif");
}
.bg2{
background-image: url("https://i.imgur.com/SHZe50s.gif");
}
a{
color: #30a3b7;
}
#wm-ipp #wm-ipp-inside {
margin: 0 6px;
border:5px solid rgb(255, 255, 255);
border-top:none;
background-color:rgba(255,255,255,0.9);
-moz-box-shadow:1px 1px 4px #333;
-webkit-box-shadow:1px 1px 4px #333;
box-shadow:1px 1px 4px #333;
border-radius:0 0 8px 8px;
}
.container {
width: 1000px;
height: 100%;
border: 2px solid rgb(255, 255, 255);
box-sizing: border-box;
}
h1, h2, h3, p, a {
color: rgb(255, 0, 60);
}
span.line{
color: red;
}
.cursor{
cursor: url(https://i.imgur.com/RUE567I.gif), auto;
}
/* @group Blink */
.blink {
-webkit-animation: blink .75s linear infinite;
-moz-animation: blink .75s linear infinite;
-ms-animation: blink .75s linear infinite;
-o-animation: blink .75s linear infinite;
animation: blink .75s linear infinite;
}
@-webkit-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@-moz-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@-ms-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@-o-keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
50.01% { opacity: 0; }
100% { opacity: 0; }
}
/* @end */
/*for footer*/
#main{
min-height: 90vh;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment