Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // change file name + little site icon
- // add cover picture when site link is sent/posted
- <meta charset="UTF-8">
- <link rel="icon" href="https://i.imgur.com/qyDkStE.gif">
- <title>lindley's site~</title>
- <link href="/style.css" rel="stylesheet" type="text/css" media="all">
- <meta property="og:image" content="http://25.media.tumblr.com/tumblr_m3illaAsHw1rv68y7o1_400.gif" />
- <meta property="twitter:card" content="summary_large_image">
- // disable copy and paste
- <script language=JavaScript>
- <!--
- //Disable right mouse click Script
- //By Maximus ([email protected]) w/ mods by DynamicDrive
- //For full source code, visit http://www.dynamicdrive.com
- var message="please do not directly copy my code ^_^ i obviously cannot stop u if that is ur intention but i would encourage u to reach out on my socials if u need assistance in taking a stab at website building!";
- ///////////////////////////////////
- function clickIE4(){
- if (event.button==2){
- alert(message);
- return false;
- }
- }
- function clickNS4(e){
- if (document.layers||document.getElementById&&!document.all){
- if (e.which==2||e.which==3){
- alert(message);
- return false;
- }
- }
- }
- if (document.layers){
- document.captureEvents(Event.MOUSEDOWN);
- document.onmousedown=clickNS4;
- }
- else if (document.all&&!document.getElementById){
- document.onmousedown=clickIE4;
- }
- document.oncontextmenu=new Function("alert(message);return false")
- // -->
- </script>
- // change highlight color
- ::selection {
- /* Change highlight background color */
- background: #f7abcf;
- /* Change highlight text color */
- color: #FFFFFF;
- }
- // body code i use for most sites
- body {
- background-image: url('https://i7.glitter-graphics.org/pub/676/676657yhxq5o5bjd.gif');
- background-attachment: fixed;
- background-repeat: repeat;
- overflow: hidden;
- }
- // hidden scrollbar
- html {
- overflow: scroll;
- overflow-x: hidden;
- }
- ::-webkit-scrollbar {
- width: 0; /* remove scrollbar space */
- background: transparent; /* to make scrollbar invisible */
- }
- ::-webkit-scrollbar-thumb {
- background: transparent;
- }
- // links
- a {text-decoration: none; color: black; }
Advertisement
Add Comment
Please, Sign In to add comment