aboutsummaryrefslogtreecommitdiff
path: root/html/base.css
diff options
context:
space:
mode:
Diffstat (limited to 'html/base.css')
-rw-r--r--html/base.css22
1 files changed, 21 insertions, 1 deletions
diff --git a/html/base.css b/html/base.css
index 91fd953..0b9c7d3 100644
--- a/html/base.css
+++ b/html/base.css
@@ -6,8 +6,11 @@
* Redistribution terms are gathered in the `copyright' file.
*/
-html {
+body {
font-family: sans-serif;
+ background-color: #f0f0f0;
+ color: #555;
+ overflow: auto;
}
textarea {
@@ -18,6 +21,10 @@ input[type="checkbox"], input[type="radio"], .hide {
display: none;
}
+.camouflage {
+ visibility: hidden;
+}
+
.show_next:not(:checked)+* {
display: none;
}
@@ -42,6 +49,8 @@ button, .button {
margin: 2px 0px;
-moz-user-select: none;
user-select: none;
+ cursor: pointer;
+ font: 400 15px sans-serif;
}
button.slimbutton, .button.slimbutton {
@@ -64,3 +73,14 @@ aside {
textarea: {
resize: none;
}
+
+.has_bottom_line::after, .has_upper_line::before {
+ content: "";
+ display: block;
+ height: 8px;
+ background: linear-gradient(transparent, #555);
+}
+
+.has_bottom_line::after {
+ background: linear-gradient(#555, transparent);
+}