Skip to content

Instantly share code, notes, and snippets.

@danielskowronski
Last active October 18, 2021 20:19
Show Gist options
  • Save danielskowronski/53998f2a2af3ba75012826b4938e81a5 to your computer and use it in GitHub Desktop.
Save danielskowronski/53998f2a2af3ba75012826b4938e81a5 to your computer and use it in GitHub Desktop.
HTML: simple pride rainbow stripes - sticky on bottom of page, above all content
<style type="text/css">
.rainbow {
position: fixed;
z-index: 999999;
width: 100%;
height: 0.5%;
left: 0;
}
html {
padding-bottom: 3%;
}
#rainbow_red { bottom: 2.50%; background: #FF0018; }
#rainbow_orange { bottom: 2.00%; background: #FFA52C; }
#rainbow_yellow { bottom: 1.50%; background: #FFFF41; }
#rainbow_green { bottom: 1.00%; background: #008018; }
#rainbow_blue { bottom: 0.50%; background: #0000F9; }
#rainbow_violet { bottom: 0.00%; background: #86007D; }
</style>
<div id="rainbow_red" class="rainbow"></div>
<div id="rainbow_orange" class="rainbow"></div>
<div id="rainbow_yellow" class="rainbow"></div>
<div id="rainbow_green" class="rainbow"></div>
<div id="rainbow_blue" class="rainbow"></div>
<div id="rainbow_violet" class="rainbow"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment