Commit a9af3096 by Kyle Fiedler

Added hover on course about and more actionable text

parent 4fcc7113
...@@ -115,6 +115,12 @@ ...@@ -115,6 +115,12 @@
} }
} }
a {
&:hover, &:visited {
text-decoration: none;
}
}
span.register { span.register {
background: lighten($blue, 20%); background: lighten($blue, 20%);
border: 1px solid $blue; border: 1px solid $blue;
...@@ -126,6 +132,14 @@ ...@@ -126,6 +132,14 @@
text-transform: uppercase; text-transform: uppercase;
text-align: center; text-align: center;
width: flex-grid(12); width: flex-grid(12);
@include transition();
&:hover {
background: lighten($pink, 20%);
border: 1px solid $pink;
color: darken($pink, 20%);
text-decoration: none;
}
} }
} }
} }
......
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
%if show_link: %if show_link:
<a href="${course_target}"> <a href="${course_target}">
%endif %endif
<span class="register disabled">You are registered for this course (${course.number}).</span> <span class="register disabled">You are registered for this course (${course.number}). <strong>View Courseware.<strong></span>
%if show_link: %if show_link:
</a> </a>
%endif %endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment