Add in sponsors

This commit is contained in:
Neale Pickett 2015-04-15 15:58:46 -06:00
parent ca48a4ada6
commit 913d6b785d
9 changed files with 39 additions and 2 deletions

View File

@ -85,5 +85,10 @@ window.addEventListener("load", init);
<li><a href="scoreboard.html">Scoreboard</a></li>
</ul>
</nav>
<section id="sponsors">
<img src="images/lanl.png" alt="Los Alamos National Laboratory">
<img src="images/doe.png" alt="US Department Of Energy">
<img src="images/sandia.png" alt="Sandia National Laboratories">
</section>
</body>
</html>

View File

@ -107,12 +107,12 @@ hr {
padding: 0.1em 0.1em;
}
img {
#readme img {
max-width: 100%;
transition: all .2s ease;
}
img:hover {
#readme img:hover {
transform: scale(1.5);
}
@ -159,6 +159,18 @@ nav li + li:before {
content: " | ";
}
#sponsors {
background: #b9e0ef;
text-align: center;
opacity: 0.8;
}
#sponsors img {
max-width: 33%;
max-height: 5em;
margin: 1em;
}
/**** Terminal ****/

BIN
html/images/doe.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

BIN
html/images/lanl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
html/images/sandia.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

View File

@ -65,5 +65,10 @@
</ul>
</section>
<section id="sponsors">
<img src="images/lanl.png" alt="Los Alamos National Laboratory">
<img src="images/doe.png" alt="US Department Of Energy">
<img src="images/sandia.png" alt="Sandia National Laboratories">
</section>
</body>
</html>

View File

@ -40,5 +40,10 @@
<li><a href="scoreboard.html">Scoreboard</a></li>
</ul>
</nav>
<section id="sponsors">
<img src="images/lanl.png" alt="Los Alamos National Laboratory">
<img src="images/doe.png" alt="US Department Of Energy">
<img src="images/sandia.png" alt="Sandia National Laboratories">
</section>
</body>
</html>

View File

@ -112,5 +112,10 @@
<li><a href="scoreboard.html">Scoreboard</a></li>
</ul>
</nav>
<section id="sponsors">
<img src="images/lanl.png" alt="Los Alamos National Laboratory">
<img src="images/doe.png" alt="US Department Of Energy">
<img src="images/sandia.png" alt="Sandia National Laboratories">
</section>
</body>
</html>

View File

@ -207,6 +207,11 @@ cgi_foot()
printf("<li><a href=\"puzzles.html\">Puzzles</a></li>\n");
printf("<li><a href=\"scoreboard.html\">Scoreboard</a></li>\n");
printf("</ul></nav>\n");
printf("<section id=\"sponsors\">\n");
printf("<img src=\"images/lanl.png\" alt=\"Los Alamos National Laboratory\">\n");
printf("<img src=\"images/doe.png\" alt=\"US Department Of Energy\">\n");
printf("<img src=\"images/sandia.png\" alt=\"Sandia National Laboratories\">\n");
printf("</section>\n");
printf("</body></html>\n");
}