summaryrefslogtreecommitdiff
path: root/web/style.css
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2013-11-09 21:21:44 -0800
committerJesse Morgan <jesse@jesterpm.net>2013-11-09 21:21:44 -0800
commit41eeace2b82271c8b5ea569ffe286a8a2f25216f (patch)
tree798e85491ac63454f4756a6fc292aaeed55602ff /web/style.css
parent0d90da39f77ac3cfa607a68bc59336bf0bdff240 (diff)
Enforcing the viewing order of videos.
Also made the Outline links more noticeable.
Diffstat (limited to 'web/style.css')
-rw-r--r--web/style.css21
1 files changed, 17 insertions, 4 deletions
diff --git a/web/style.css b/web/style.css
index ecad037..3e96a5d 100644
--- a/web/style.css
+++ b/web/style.css
@@ -7,7 +7,7 @@ html, body {
a {
color: #BDBDBD;
- text-decoration: none;
+ text-decoration: underline;
font-weight: bold;
}
@@ -75,6 +75,7 @@ header h1 {
header h1 a {
color: #7bc043;
+ text-decoration: none;
}
header h1 img {
@@ -266,7 +267,7 @@ footer a:hover {
#content nav a {
text-decoration: none;
- color: #eaeaea;
+ color: #BDBDBD;
letter-spacing: 2px;
font-weight: normal;
}
@@ -275,6 +276,10 @@ footer a:hover {
color: #fd6000;
}
+#content nav .disabled {
+ color: #eaeaea;
+}
+
#chapterprogress {
margin: 2em auto 2em auto;
width: 75%;
@@ -306,14 +311,22 @@ footer a:hover {
border-radius: 10px;
}
-#videos .image.completed a:before {
+#videos .image.completed.allowed a:before {
content: url('/images/complete.png');
position: absolute;
top: 0;
left: 0;
}
-#videos .image a:hover:before {
+#videos .image.allowed a {
+ cursor: pointer;
+}
+
+#videos .image a {
+ cursor: default;
+}
+
+#videos .image.allowed a:hover:before {
content: url('/images/play.png');
position: absolute;
top: 50%;