Skip to content

Instantly share code, notes, and snippets.

@Jerliyah
Last active August 18, 2018 21:21
Show Gist options
  • Save Jerliyah/1824bf0ba49263ebef5f0d57d983dac3 to your computer and use it in GitHub Desktop.
Save Jerliyah/1824bf0ba49263ebef5f0d57d983dac3 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title> Glow Triangle </title>
<style>
.logo.container {
filter: drop-shadow(0px 0px 5px #66ffff);
}
.logo.triangle {
clip-path: polygon(50% 90%, 0 10%, 100% 10%);
}
.logo.triangle.outer {
height: 50px;
width: 50px;
background: #66ffff;
display: flex;
}
.logo.triangle.inner {
margin: 18% auto auto auto;
width: 50%;
height: 50%;
background: white;
}
</style>
</head>
<body>
<div class="logo container">
<div class="logo triangle outer">
<div class="logo triangle inner"></div>
</div>
</div>
<script src="filesystem:https://webmakerapp.com/temporary/script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment