Skip to content

Commit adc19c9

Browse files
committed
Specific colours for links.
1 parent 6ccb9a9 commit adc19c9

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
<h1>danny greg</h1>
88
<div><img src="codercat.jpg" alt=""></div>
9-
<p><img src="octocat.png" alt="" />I work at <a href="http://github.com/dannygreg">GitHub</a>.</p>
10-
<p><img src="twitter.png" alt="" />I have <a href="http://www.twitter.com/dannygreg">Twitter</a>.</p>
9+
<p><img class="bullet" src="octocat.png" alt="" />I work at <a id="github" href="http://github.com/dannygreg">GitHub</a>.</p>
10+
<p><img class="bullet" src="twitter.png" alt="" />I have <a id=twitter href="http://www.twitter.com/dannygreg">Twitter</a>.</p>
1111

1212
<script type="text/javascript">
1313
var _gauges = _gauges || [];

style.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,21 @@ div {
2020
}
2121

2222
a {
23-
color: orange;
2423
text-decoration: none;
2524
}
2625

26+
a#twitter {
27+
color: #33CCFF;
28+
}
29+
30+
img.bullet {
31+
margin-top: 20px;
32+
}
33+
34+
a#github {
35+
color: #F08C00;
36+
}
37+
2738
a:hover {
2839
text-decoration: underline;
2940
}

0 commit comments

Comments
 (0)