Skip to content
This repository has been archived by the owner on Feb 19, 2021. It is now read-only.

Commit

Permalink
Adding more touches.
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrence Ryan committed Aug 14, 2012
1 parent 731f5f8 commit a75f0d7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions assets/css/main.css
Expand Up @@ -37,12 +37,16 @@ body {

a {
color: #F00;
text-decoration: none;
-moz-transition: color 0.1s ease-in;
-o-transition: color 0.1s ease-in;
-ms-transition: color 0.1s ease-in;
-webkit-transition: color 0.1s ease-in;
transition: color 0.1s ease-in; }

a:hover, a:active {
text-decoration: underline; }

.heading, h1, h2, h3, header p, nav {
font-family: "myriad-pro-condensed", "Gill Sans", "Helvetica Neue", sans-serif; }

Expand Down
5 changes: 5 additions & 0 deletions assets/css/main.scss
Expand Up @@ -15,7 +15,12 @@ body{

a{
color: #F00;
text-decoration: none;
@include transition(color .1s ease-in);
}

a:hover, a:active{
text-decoration: underline;
}

.heading {
Expand Down
4 changes: 2 additions & 2 deletions index.php
Expand Up @@ -41,11 +41,11 @@
<div id="content">
<section id="primary">
<section>
<h1><a href="/blog">I Write</a></h1>
<h1><a href="http://blog.terrenceryan.com">I Write</a></h1>

<?php include './modules/blog.php';?>

<p class="externalref">View more on <a href="http://blog.terrenceryan.dev">my blog</a>.</p>
<p class="externalref">View more on <a href="http://blog.terrenceryan.com">my blog</a>.</p>
</section>
<hr />
<section>
Expand Down

0 comments on commit a75f0d7

Please sign in to comment.