Add color bar

main
Isaiah Odhner 2018-06-29 23:43:08 -04:00
parent f15913a383
commit fccdc1a3d0
2 changed files with 16 additions and 0 deletions

View File

@ -7,6 +7,7 @@
</head>
<body>
<div id="background-animation"></div>
<hr id="os-logo-colorbar">
<div id="foreground-contents">
<a href="https://98.js.org/" target="_blank" id="os-logo-link">
<img src="../images/98.js.org.svg" alt="98.js.org" id="os-logo" height="100">

View File

@ -35,6 +35,21 @@ body {
#os-logo-link {
text-decoration: none;
}
#os-logo-colorbar {
position: absolute;
left: 0;
right: 0;
top: 79px;
pointer-events: none;
border: 0;
height: 1px;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff3100+0,ff3100+14,f7df1e+14,f7df1e+29,63ce30+29,63ce30+43,009cff+43,009cff+43 */
background: #ff3100; /* Old browsers */
background: -moz-linear-gradient(left, #ff3100 0%, #ff3100 14%, #f7df1e 14%, #f7df1e 29%, #63ce30 29%, #63ce30 43%, #009cff 43%, #009cff 43%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, #ff3100 0%,#ff3100 14%,#f7df1e 14%,#f7df1e 29%,#63ce30 29%,#63ce30 43%,#009cff 43%,#009cff 43%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, #ff3100 0%,#ff3100 14%,#f7df1e 14%,#f7df1e 29%,#63ce30 29%,#63ce30 43%,#009cff 43%,#009cff 43%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3100', endColorstr='#009cff',GradientType=1 ); /* IE6-9 */
}
a:link {
color: #0000CC;