X Tutup
Skip to content

Commit 2b4c799

Browse files
committed
* update footer
1 parent 7077a76 commit 2b4c799

File tree

3 files changed

+54
-25
lines changed

3 files changed

+54
-25
lines changed

resources/style.css

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -352,29 +352,43 @@ img {
352352
}
353353
.footer {
354354
font-family: Georgia, serif;
355-
background: #383838 url("footer.jpg") bottom repeat-x;
356-
color: #757575;
355+
background: url("footer-trans.png") bottom repeat-x;
356+
color: #fff;
357+
font-size: 11px;
358+
padding: 0 25px;
359+
height: 148px;
360+
margin-bottom: 40px;
361+
width: 958px;
362+
}
363+
.footer .bold-text {
357364
font-size: 12px;
358365
font-weight: bold;
359-
margin-bottom: 40px;
360-
-webkit-box-shadow: 0 3px 5px 0 #000;
361-
-moz-box-shadow: 0 3px 5px 0 #000;
362-
-webkit-box-shadow: 0 3px 5px 0 #000;
363-
-moz-box-shadow: 0 3px 5px 0 #000;
364-
box-shadow: 0 3px 5px 0 #000;
365366
}
366367
.footer p {
367368
margin: 0;
368369
}
370+
.footer a {
371+
color: #cae994;
372+
text-decoration: none;
373+
}
374+
.footer a:hover,
375+
.footer a:active {
376+
color: #cae994;
377+
text-decoration: underline;
378+
}
369379
.footer .sponsor {
370-
padding: 20px 40px 30px;
371-
width: 470px;
380+
margin-right: 280px;
381+
padding: 20px 0 30px;
382+
width: 240px;
372383
display: inline-block;
373384
}
385+
.footer .sponsor img {
386+
margin: 5px 0;
387+
}
374388
.footer .copyright {
375-
padding: 20px;
376-
width: 400px;
377389
display: inline-block;
390+
width: 420px;
391+
text-shadow: 0 1px 1px #48484a;
378392
}
379393
#dsq-footer {
380394
display: none;

resources/style.styl

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -359,26 +359,41 @@ img {
359359

360360
.footer {
361361
body-font()
362-
background: #383838 url(footer.jpg) bottom repeat-x;
363-
color: #757575;
364-
font-size: 12px;
365-
font-weight: bold;
362+
background: url(footer-trans.png) bottom repeat-x;
363+
color: #ffffff;
364+
font-size: 11px;
365+
padding: 0 25px;
366+
height: 148px;
366367
margin-bottom: 40px;
367-
-webkit-box-shadow: 0 3px 5px 0 #000000;
368-
-moz-box-shadow: 0 3px 5px 0 #000000;
369-
box-shadow: 0 3px 5px 0 #000000;
368+
width: 958px;
369+
.bold-text {
370+
font-size: 12px;
371+
font-weight: bold;
372+
}
370373
p {
371374
margin: 0;
372375
}
376+
a {
377+
color: #cae994;
378+
text-decoration: none;
379+
}
380+
a:hover, a:active {
381+
color: #cae994;
382+
text-decoration: underline;
383+
}
373384
.sponsor {
374-
padding: 20px 40px 30px;
375-
width: 470px;
385+
margin-right: 280px;
386+
padding: 20px 0 30px;
387+
width: 240px;
376388
display: inline-block;
389+
img {
390+
margin: 5px 0;
391+
}
377392
}
378393
.copyright {
379-
padding: 20px;
380-
width: 400px;
381394
display: inline-block;
395+
width: 420px;
396+
text-shadow: 0 1px 1px #48484a;
382397
}
383398
}
384399

templates/footer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<div class="section footer">
22
<div class="sponsor">
3-
<p>Sponsored by:</p>
3+
<p class="bold-text">Sponsored by:</p>
44
<img src="/c9-logo.png"/>
55
<p>Write, Run and Debug your code with our powerful and flexible IDE. Co-edit your code or create public or private projects.</p>
66
</div>
77
<div class="copyright">
88
<p>All code snippets are in the public domain</p>
9-
<p>All other content and design is copyright &copy;2011-2012 Cloud9IDE. All rights reserved.</p>
9+
<p>All other content and design is copyright &copy;2011-2012 <a href="http://c9.io">Cloud9IDE</a>. All rights reserved.</p>
1010
</div>
1111
</div>

0 commit comments

Comments
 (0)
X Tutup