mirror of https://github.com/dirtbags/moth.git
Add in sponsors
This commit is contained in:
parent
12f87cd1fd
commit
fc1b366b82
|
@ -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>
|
||||
|
|
|
@ -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 ****/
|
||||
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 129 KiB |
Binary file not shown.
After Width: | Height: | Size: 44 KiB |
Binary file not shown.
After Width: | Height: | Size: 78 KiB |
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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");
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue