
/* Please see the article */

#程式碼框, #尤甚 {
	/* Both elements need the same text and space styling so they are directly on top of each other */
	padding: 10px;
	border: 0;
	font-size: 15pt;
	/* line-height: 1.5; */
	tab-size: 2;
  }  

  /* For Webkit browsers (Chrome, Safari, newer versions of Edge) */
::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: #84848400;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: #3f3f3f;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  border-radius: 8px;
  scrollbar-color: #888 #84848400;
}


  @keyframes gradientMove {
    0% {
      transform: translate(0%, 50%);
      transform: scale(1) rotate(0deg);
    }
    25% {
      transform: translate(100%, 50%);
      transform: scale(1.2) rotate(5deg);
    }
    50% {
      transform: translate(50%, 50%);
      transform: scale(1) rotate(0deg);
    }
    75% {
      transform: translate(50%, 50%);
      transform: scale(1.2) rotate(-5deg);
    }
    100% {
      transform: translate(100%, 0%);
      transform: scale(1) rotate(0deg);
    }
  }
  
  .animate-gradient {
    background-size: 300% 300%;
    transition: all 0.5s ease-in-out;
  }

  @keyframes gradientMove {
    0%, 100% {
      background-position: 50% 50%;
    }
    50% {
      background-position: 60% 60%;
    }
  }
  
  /* Syntax Highlighting from prism.js starts below, partly modified: */
  
  /* PrismJS 1.23.0
  https://prismjs.com/download.html#themes=prism-funky&languages=markup */
  /**
   * prism.js Funky theme
   * Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-the-gaps/
   * @author Lea Verou
   */
  
  code[class*="language-"],
  pre[class*="language-"] {
	/* font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; */
	font-size: 1em;
	/* text-align: left; */
	/* white-space: pre; */
	word-spacing: normal;
	/* word-break: normal; */
	/* word-wrap: normal; */
	line-height: 1.5;
  
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
  
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
  }
  
  /* Code blocks */
  pre[class*="language-"] {
	padding: .4em .8em;
	margin: .5em 0;
	/* overflow: auto; */
	/* background: url('data:image/svg+xml;charset=utf-8,<svg%20version%3D"1.1"%20xmlns%3D"http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg"%20width%3D"100"%20height%3D"100"%20fill%3D"rgba(0%2C0%2C0%2C.2)">%0D%0A<polygon%20points%3D"0%2C50%2050%2C0%200%2C0"%20%2F>%0D%0A<polygon%20points%3D"0%2C100%2050%2C100%20100%2C50%20100%2C0"%20%2F>%0D%0A<%2Fsvg>');
	background-size: 1em 1em; - WebCoder49*/
	/* background: black; - WebCoder49 */
  }
  
  code[class*="language-"] {
	/* background: black; */
	color: white;
	box-shadow: -.3em 0 0 .3em black, .3em 0 0 .3em black;
  }
  
  /* Inline code */
  :not(pre) > code[class*="language-"] {
	padding: .2em;
	border-radius: .3em;
	box-shadow: none;
	/* white-space: normal; */
  }
  
  .token.comment,
  .token.prolog,
  .token.doctype,
  .token.cdata {
    color: #6a9955; /* Green for comments */
  }
  
  .token.punctuation {
    color: #d4d4d4; /* Light gray for punctuation */
  }
  
  .token.namespace {
    opacity: .7;
  }
  
  .token.property,
  .token.tag,
  .token.boolean,
  .token.number,
  .token.constant,
  .token.symbol {
    color: #569cd6; /* Blue for properties, numbers, booleans */
  }
  
  .token.selector,
  .token.attr-name,
  .token.string,
  .token.char,
  .token.builtin {
    color: #d9d3d1; /* Light red for strings and attributes */
  }
  
  .token.operator,
  .token.entity,
  .token.url,
  .language-css .token.string,
  .token.variable,
  .token.inserted {
    color: #cfa029; /* Yellow for variables and inserted content */
  }
  
  .token.atrule,
  .token.attr-value,
  .token.keyword {
    color: #de89d7; /* Purple for keywords and at-rules */
  }
  
  .token.regex,
  .token.important {
    color: #d16969; /* Red for regex and important elements */
  }
  
  .token.important,
  .token.bold {
    font-weight: bold;
  }
  
  .token.italic {
    font-style: italic;
  }
  
  .token.entity {
    cursor: help;
  }
  
  .token.deleted {
    color: #f44747; /* Bright red for deleted content */
  }
  
  
  /* Plugin styles: Diff Highlight */
  pre.diff-highlight.diff-highlight > code .token.deleted:not(.prefix),
  pre > code.diff-highlight.diff-highlight .token.deleted:not(.prefix) {
	background-color: rgba(255, 0, 0, .3);
	display: inline;
  }
  
  pre.diff-highlight.diff-highlight > code .token.inserted:not(.prefix),
  pre > code.diff-highlight.diff-highlight .token.inserted:not(.prefix) {
	background-color: rgba(0, 255, 128, .3);
	display: inline;
  }
  
  /* End of prism.js syntax highlighting*/
  
  