TEW-0x00/shadows/index.html
surtur ad9b418570
All checks were successful
continuous-integration/drone/push Build is passing
moved script ref to header with defer
...in the remaining files
2020-04-01 20:08:53 +02:00

63 lines
2.9 KiB
HTML

<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>shadows - tew-0x00</title>
<meta name="description" content="round corners - tew-0x00">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script defer src="/scripts/prism.js"></script>
<link rel="stylesheet" type="text/css" href="/css/style.css">
<link rel="stylesheet" type="text/css" href="/css/prism.css" data-noprefix/>
</head>
<body>
<header>
<div id="divlogoimg">
<img class="logoimg" src="/media/logo.png">
</div>
</header>
<h3 class="title">shadows</h3>
<div id="divsection">
<div class="divp">
<p>The logo "glow" is actually a CSS shadow.<br>The <code class="language-css">box-shadow</code> values come as follows: horizontal and vertical offset, blur radius, spread and colour (or colours).<br>When <code class="language-css">inset</code> is specified, the outer shadow is changed to inner shadow. Specifying more colours creates layers.<br>Below is the logo shadow "evil glow" (so evil) code.</p>
</div>
<div class="divcodeblock">
<pre class="language-css" data-lang="css"><code class="language-css">.logoimg {
width: fit-content;
margin: 2em 1em;
max-width: 250px;
padding: 5px;
box-shadow:
inset 60px 0 330px #f0f,
0 0 60px #f0f,
-10px 0 50px #0ff;
}</code></pre>
</div>
<div class="divp">
<p>Similar to <code class="language-css">box-shadow</code>, <code class="language-css">text-shadow</code> takes several values:<br>Horizontal and vertical offset, blur radius and the shadow colour.<br>This sequence can be specified multiple times to create a layered shadow.</p>
</div>
<div id="divshadowz">
<p><h2 id="textshadow">Shadows used on text.</h2></p>
</div>
<div class="divcodeblock">
<pre class="language-css" data-lang="css"><code class="language-css">#textshadow {
color: #f0f;
text-shadow:
1px 1px 2px black,
0 0 25px blue,
0 0 5px darkblue;
}</code></pre>
</div>
</div>
<footer class="copyright">
&copy; 2020 <a href="https://git.dotya.ml/wanderer" target="_blank">wanderer</a>
· <a href="https://tew0x00.dotya.ml/">tew-0x00</a>
· WTFPL<br>
<a href="https://git.dotya.ml/wanderer/TEW-0x00" target="_blank" title="page source">source</a>
</footer>
</body>
</html>