|
@@ -23,7 +23,8 @@ body background: #ddeeff
|
|
|
body {
|
|
|
color: #222211;
|
|
|
background-color: #99bbdd;
|
|
|
-
|
|
|
+ background: linear-gradient(to top right, #99bbdd, #3366aa);
|
|
|
+
|
|
|
font-size: 12px;
|
|
|
margin: 0px 5px 0px 5px;
|
|
|
}
|
|
@@ -72,6 +73,7 @@ div#footer {
|
|
|
div#content {
|
|
|
color: #222211;
|
|
|
background-color: #ddeeff;
|
|
|
+ background: linear-gradient(to bottom left, #99bbdd, #ddeeff);
|
|
|
padding: 20px;
|
|
|
width: 80%;
|
|
|
}
|
|
@@ -127,3 +129,28 @@ a:link {
|
|
|
a:visited {
|
|
|
color: #0066ee;
|
|
|
}
|
|
|
+
|
|
|
+.comment-click {
|
|
|
+ border-top: solid 1px #335555;
|
|
|
+ padding-top: 5px;
|
|
|
+
|
|
|
+ position: relative;
|
|
|
+ color: #335555;
|
|
|
+ font-size: 12px;
|
|
|
+ display: inline;
|
|
|
+}
|
|
|
+
|
|
|
+.comment-click:before {
|
|
|
+ content: "Comment?";
|
|
|
+}
|
|
|
+
|
|
|
+.comment-click:focus .comment-clicked {
|
|
|
+ display: block;
|
|
|
+}
|
|
|
+
|
|
|
+.comment-clicked {
|
|
|
+ position: relative;
|
|
|
+ z-index: 1;
|
|
|
+ text-align: left;
|
|
|
+ display: none;
|
|
|
+}
|