first commit

This commit is contained in:
Adolfo Delorenzo 2021-10-05 22:50:20 -06:00
parent 5926fbd130
commit f43d551fe2
4 changed files with 0 additions and 191 deletions

View File

@ -1,20 +0,0 @@
<html>
<head>
<link rel="stylesheet" href="css/font.css">
<link rel="stylesheet" href="css/bootstrap.css">
<style>
body {font-family:'Raleway', Arial, sans-serif; padding-top: 10px; padding-left: 10px; padding-right: 10px;}
h2 {font-family:'Raleway', Arial, sans-serif; color: #E86A25;}
h1,h3,h4,h5,h6,a {font-family:'Raleway', Arial, sans-serif; color: #38DAFF;}
</style>
<script>
var iframes = document.getElementsByTagName('iframe');
for (var i = 0; i < iframes.length; i++) {
iframes[i].parentNode.removeChild(iframes[i]);
}
</script>
</head>
<body>
<iframe marginheight="0" src="https://portainer.io/unfucktshirt" marginwidth="0" frameborder="0" height="100%" scrolling="no" width="100%"></iframe><br>
</body>
<html>

View File

@ -1,63 +0,0 @@
<html>
<style>
@import url(https://fonts.googleapis.com/css?family=Open+Sans:600);
body {
font-family: 'Open Sans', 'sans-serif';
color: #cecece;
background: #222;
overflow: hidden;
}
.item-1,
.item-2,
.item-3 {
position: absolute;
display: block;
top: 2em;
width: 60%;
font-size: 2em;
animation-duration: 20s;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}
.item-1{
animation-name: anim-1;
}
.item-2{
animation-name: anim-2;
}
.item-3{
animation-name: anim-3;
}
@keyframes anim-1 {
0%, 8.3% { left: -100%; opacity: 0; }
8.3%,25% { left: 25%; opacity: 1; }
33.33%, 100% { left: 110%; opacity: 0; }
}
@keyframes anim-2 {
0%, 33.33% { left: -100%; opacity: 0; }
41.63%, 58.29% { left: 25%; opacity: 1; }
66.66%, 100% { left: 110%; opacity: 0; }
}
@keyframes anim-3 {
0%, 66.66% { left: -100%; opacity: 0; }
74.96%, 91.62% { left: 25%; opacity: 1; }
100% { left: 110%; opacity: 0; }
}
</style>
<body>
<p class="item-1">This is your last chance. After this, there is no turning back.</p>
<p class="item-2">You take the blue pill - the story ends, you wake up in your bed and believe whatever you want to believe.</p>
<p class="item-3">You take the red pill - you stay in Wonderland and I show you how deep the rabbit-hole goes.</p>
</body>
</html>

View File

@ -1,19 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/vid.css">
</head>
<body>
<video autoplay muted id="myVideo">
<source src="vids/un-f-ck.m4v" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<script>
var video1 = document.getElementById("myVideo");
video1.onended = function(e) {
window.location.replace("http://localhost:7777/frames.html");
}
</script>
</body>
</html>

View File

@ -1,89 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial;
font-size: 17px;
}
#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
.content {
position: fixed;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #f1f1f1;
width: 100%;
padding: 20px;
}
#myBtn {
width: 200px;
font-size: 18px;
padding: 10px;
border: none;
background: #000;
color: #fff;
cursor: pointer;
}
#myBtn:hover {
background: #ddd;
color: black;
}
</style>
</head>
<body>
<video autoplay muted id="myVideo">
<source src="vids/blurred.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<!--<div class="content">
<h1>Portainer is now Kubernetes</h1>
<h2>We...re on a mission to unf*ck Kubernetes. Are you with us?</h2>
<p>Portainer enables centralized configuration, management and security of Kubernetes and Docker environments, allowing you to deliver
<p>Adopting container orchestration platforms like Kubernetes is hard. To succeed, you need to give everyone secure access to the funct
<p>With its super-simple 'opinionated' GUI, Portainer makes it easy for everyone to get up and running quickly. It lets Platform Manage
<p>Portainer works with Docker, Docker Swarm and Kubernetes. It can be deployed in the cloud on prem or at the edge. Portainer Business
<button id="myBtn" onclick="myFunction()">Pause</button>
</div>
<script>
var video = document.getElementById("myVideo");
var btn = document.getElementById("myBtn");
function myFunction() {
if (video.paused) {
video.play();
btn.innerHTML = "Pause";
} else {
video.pause();
btn.innerHTML = "Play";
}
}
</script>-->
<script>
var video1 = document.getElementById("myVideo");
video1.onended = function(e) {
window.location.replace("http://localhost:7777/frames.html");
}
</script>
</body>
</html>