Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <title>Techie</title>
- <link rel="shortcut icon" href="https://i.imgur.com/efvX9OK.png">
- <head>
- <!--- all this is ripped from my old sniff, lots of stuff gutted, almost nothing in the styling is used :) --->
- <!--- jquery cringeport begin --->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <!--- jquery cringeport end --->
- <!--- stylized tooltip import begin --->
- <script type="text/javascript" src="https://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
- <!--- stylized tooltip import end --->
- <!--- typing lines beginning --->
- <link rel="stylesheet" href="https://rawcdn.githack.com/LordMurci/LordMurci/dbf0a34eae354842dca936a591f80ba05b0b320e/css/Ncss/typing.css">
- <!--- typing lines ending --->
- <!--- icons icons icons beginning --->
- <link href='https://css.gg/terminal.css' rel='stylesheet'>
- <link href='https://css.gg/home.css' rel='stylesheet'>
- <link href='https://css.gg/folder.css' rel='stylesheet'>
- <link href='https://css.gg/pen.css' rel='stylesheet'>
- <link href='https://css.gg/music.css' rel='stylesheet'>
- <!--- icons icons icons ending --->
- <!--- wouldnt you like to know weatherboy --->
- <script>(function($){$(document).ready(function(){$("[title]").style_my_tooltips({tip_follows_cursor:true,tip_delay_time:0,tip_fade_speed:300,attribute:"title"});});})(jQuery);</script>
- <style>
- @import url('https://fonts.googleapis.com/css?family=Play&display=swap');
- /* most of this shit is self explanatory, honestly */
- /* https://media.discordapp.net/attachments/958829712816341002/984542051523768360/3x.gif mewspin img link */
- /* you know what this is */
- body {
- font-family: Play;
- overflow-x:hidden;
- overflow-y:hidden;
- background-color: #000;
- /*background-color: #e81d1d;*/
- /*transition: background-color 2s;*/
- }
- /* you know what this is */
- /* invisible container for containing everything */
- .fullbodycont {
- height: 500px;
- width: 500px;
- border: 0px solid white;
- position: absolute;
- transform: translate(-50%, 50%);
- bottom: 50%;
- left: 50%;
- }
- /* invisible container for containing everything */
- /* information container beginning */
- .main {
- height: 300px;
- width: 300px;
- text-align: center;
- border: 0px solid white;
- border-radius: 0px;
- color: white;
- position: absolute;
- transform: translate(-50%, 50%);
- bottom: 50%;
- left: 50%;
- padding: 25px;
- background-color: rgba(0,0,0,0);
- opacity: 1;
- /*background: url(https://wallpaperset.com/w/full/8/8/9/354096.jpg);
- background-size: cover;
- background-repeat: no-repeat;*/
- -webkit-animation: fade 12s;
- animation: fade 12s;
- animation-delay: 0s;
- transition: 0.3s;
- }
- @-webkit-keyframes fade {from {opacity: 0;}to {opacity: 1;}}
- @keyframes fade {from {opacity: 0;}to {opacity: 1;}}
- /* information container ending */
- /* i am going to steal your skin */
- .main p {font-size: 12px;}
- .main a {color: white;}
- h3 , h5 {font-weight: lighter;}
- /* i am going to steal your skin but twice */
- /* stylized tooltip beginning */
- .tooltip {display:inline;position:relative;}
- #s-m-t-tooltip {
- position: relative;
- overflow: hidden;
- z-index: 99999;
- max-width: 120px;
- margin: 0px 20px 20px 35px;
- padding: 6px;
- font-family: Play;
- /*background: black;*/
- border: 1px solid white;
- line-height: 100%;
- letter-spacing: 1px;
- color: white;
- font-size: 10px;
- }
- /* stylized tooltip ending */
- /* you cannot highlight heeheeha */
- ::selection {display: none}
- ::-webkit-selection {display: none}
- ::-o-selection {display: none}
- ::-ms-selection {display: none}
- /* you cannot highlight heeheeha */
- /* spinning main image beginning*/
- .himg {
- cursor: pointer;
- -webkit-animation: spin 6s linear infinite;
- animation: spin 10s linear infinite;
- border: 1px solid white;
- border-radius: 150px;
- height: 120px;
- width: 120px;
- margin: 25px 0px 10px 0px;
- background-color: rgba(0, 0, 0, 0);
- }
- @-webkit-keyframes spin {0% { -webkit-transform: rotateY(0deg); }100% { -webkit-transform: rotateY(360deg); }}
- @keyframes spin { 0% { transform: rotateY(0deg); }100% { transform: rotateY(360deg); }}
- /* spinning main image ending*/
- tumblr_controls, .tmblr-iframe {visibility:hidden;padding-top: 0 !important;}
- tumblr_controls, .iframe-controls--desktop {visibility:hidden;}
- #sidingLeft, #sidingRight, #sidingTop, #sidingBottom{
- position: absolute;
- background-color: #fff;
- }
- #sidingLeft{
- position: fixed;
- left: 50%;
- top: 50%;
- margin-left: -175px;
- margin-top: -175px;
- width: 1px; height: 0;
- animation: sideLeft 2s; animation-delay: 0s; animation-fill-mode: forwards;
- }
- #sidingRight{
- position: fixed;
- left: 50%;
- bottom: 50%;
- margin-left: 175px;
- margin-bottom: -175px;
- width: 1px; height: 0;
- animation: sideRight 2s; animation-delay: 2s; animation-fill-mode: forwards;
- }
- #sidingTop{
- position: fixed;
- top: 50%;
- right: 50%;
- margin-right: -175px;
- margin-top: -175px;
- width: 0; height: 1px;
- animation: sideTop 2s; animation-delay: 3s; animation-fill-mode: forwards;
- }
- #sidingBottom{
- position: fixed;
- top: 50%;
- left: 50%;
- margin-left: -175px;
- margin-top: 175px;
- width: 0; height: 1px;
- animation: sideBottom 2s; animation-delay: 1s; animation-fill-mode: forwards;
- }
- @keyframes sideLeft{from{height: 0;} to{height: 350px;} }
- @keyframes sideRight{from{height: 0;} to{height: 350px;} }
- @keyframes sideTop{from{width: 0;} to{width: 350px;} }
- @keyframes sideBottom{from{width: 0;} to{width: 350px;} }
- </style>
- </head>
- <body onload="window.resizeTo(600,600)">
- <!--- invisible container beginning --->
- <div class="fullbodycont">
- <div id="sidingLeft"></div>
- <div id="sidingRight"></div>
- <div id="sidingTop"></div>
- <div id="sidingBottom"></div>
- <div class="main" id="Home">
- <h3 style="margin-top: 5px;">
- <center>Technician</center>
- </h3>
- <img src="https://i.imgur.com/ByLMChq.jpeg" class="himg" title="Woah!">
- <br>
- <center>
- <div style="margin-top: 15px;">
- <!---<font style="text-shadow: 2px 0 .2px #FF0000, -2px 0 .2px #00F1F5;">--->
- <div class="typing">
- 20//He/Him
- </div>
- <div class="typing2">
- "IT Field Support Technician"
- </div>
- <div class="typing3">
- 1.2k hours in Fallout: New Vegas
- </div>
- <div class="typing4">
- 3.5k hours in Rust
- </div>
- </font>
- </div>
- </center>
- </div>
- </div>
- <!--- youtube embed begin --->
- <iframe allow="autoplay; encrypted-media; loop;" width="0" height="0" src="https://www.youtube.com/embed/HevFHRuLeTw?autoplay=1&start=0&mute=0&enablejsapi=1;loop=1" frameborder="0" ></iframe>
- <!--- youtube embed end --->
- <!--- thats all folks --->
- </body>
Advertisement
Add Comment
Please, Sign In to add comment