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
commit4100cf8af9a638a38c4e42cd7d9f3c0da7af3782 (patch)
tree8fb39a8d80422e276f88d430dd751a8708ad3bf6 /web/style.css
parentd94643c217b6b93eb6c539c60b00fe0cf68272b7 (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%;