mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-17 09:02:25 +00:00
Remove button images (they suck). Made the site less plain with a gradiant
This commit is contained in:
parent
44cc17a0e1
commit
63ba5e4737
7 changed files with 29 additions and 19 deletions
Binary file not shown.
Before Width: | Height: | Size: 423 B |
BIN
images/bug.png
BIN
images/bug.png
Binary file not shown.
Before Width: | Height: | Size: 609 B |
Binary file not shown.
Before Width: | Height: | Size: 570 B |
10
index.html
10
index.html
|
@ -22,11 +22,11 @@
|
|||
<p class="header">An Improved Quake C Compiler</p>
|
||||
|
||||
<ul>
|
||||
<li class="download"><a class="buttons" href="https://github.com/graphitemaster/gmqcc/zipball/master">Download ZIP</a></li>
|
||||
<li class="download"><a class="buttons" href="https://github.com/graphitemaster/gmqcc/tarball/master">Download TAR</a></li>
|
||||
<li><a class="buttons issues" href="https://github.com/graphitemaster/gmqcc/issues">Issues</a></li>
|
||||
<li><a class="buttons test" href="test.html">Try it</a></li>
|
||||
<li><a class="buttons github" href="https://github.com/graphitemaster/gmqcc">View On GitHub</a></li>
|
||||
<li class="download"><a href="https://github.com/graphitemaster/gmqcc/zipball/master">Download ZIP</a></li>
|
||||
<li class="download"><a href="https://github.com/graphitemaster/gmqcc/tarball/master">Download TAR</a></li>
|
||||
<li class="buttons"><a href="https://github.com/graphitemaster/gmqcc/issues">Issues</a></li>
|
||||
<li class="buttons"><a href="test.html">Try it</a></li>
|
||||
<li class="buttons"><a href="https://github.com/graphitemaster/gmqcc">View On GitHub</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
|
BIN
qcvm
BIN
qcvm
Binary file not shown.
|
@ -30,10 +30,30 @@ body {
|
|||
font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 14px;
|
||||
color: #232323;
|
||||
background-color: #FBFAF7;
|
||||
/*background-color: #FBFAF7;*/
|
||||
margin: 0;
|
||||
line-height: 1.8em;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
||||
|
||||
|
||||
/* IE10 Consumer Preview */
|
||||
background-image: -ms-radial-gradient(right bottom, ellipse farthest-corner, #0D0D0D 0%, #FBFAF7 100%);
|
||||
|
||||
/* Mozilla Firefox */
|
||||
background-image: -moz-radial-gradient(right bottom, ellipse farthest-corner, #0D0D0D 0%, #FBFAF7 100%);
|
||||
|
||||
/* Opera */
|
||||
background-image: -o-radial-gradient(right bottom, ellipse farthest-corner, #0D0D0D 0%, #FBFAF7 100%);
|
||||
|
||||
/* Webkit (Safari/Chrome 10) */
|
||||
background-image: -webkit-gradient(radial, right bottom, 0, right bottom, 1012, color-stop(0, #0D0D0D), color-stop(1, #FBFAF7));
|
||||
|
||||
/* Webkit (Chrome 11+) */
|
||||
background-image: -webkit-radial-gradient(right bottom, ellipse farthest-corner, #0D0D0D 0%, #FBFAF7 100%);
|
||||
|
||||
/* W3C Markup, IE10 Release Preview */
|
||||
background-image: radial-gradient(ellipse farthest-corner at right bottom, #0D0D0D 0%, #FBFAF7 100%);
|
||||
|
||||
}
|
||||
|
||||
|
@ -307,22 +327,12 @@ header li:hover {
|
|||
|
||||
a.buttons {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
background: url(../images/arrow-down.png) no-repeat;
|
||||
font-weight: normal;
|
||||
text-shadow: rgba(0, 0, 0, 0.4) 0 -1px 0;
|
||||
padding: 2px 2px 2px 22px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
a.github {
|
||||
background: url(../images/octocat-small.png) no-repeat 1px;
|
||||
}
|
||||
|
||||
a.issues {
|
||||
padding: 2px 2px 2px 21px;
|
||||
background: url(../images/bug.png) no-repeat 0px;
|
||||
}
|
||||
|
||||
a.buttons:hover {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
|
|
|
@ -25,9 +25,9 @@
|
|||
<ul>
|
||||
<li class="download"><a class="buttons" href="https://github.com/graphitemaster/gmqcc/zipball/master">Download ZIP</a></li>
|
||||
<li class="download"><a class="buttons" href="https://github.com/graphitemaster/gmqcc/tarball/master">Download TAR</a></li>
|
||||
<li><a class="buttons issues" href="https://github.com/graphitemaster/gmqcc/issues">Issues</a></li>
|
||||
<li><a class="buttons test" href="test.html">Try it</a></li>
|
||||
<li><a class="buttons github" href="https://github.com/graphitemaster/gmqcc">View On GitHub</a></li>
|
||||
<li><a class="buttons" href="https://github.com/graphitemaster/gmqcc/issues">Issues</a></li>
|
||||
<li><a class="buttons" href="test.html">Try it</a></li>
|
||||
<li><a class="buttons" href="https://github.com/graphitemaster/gmqcc">View On GitHub</a></li>
|
||||
</ul>
|
||||
|
||||
</header>
|
||||
|
|
Loading…
Reference in a new issue