aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/base.j22
-rw-r--r--styles.css14
2 files changed, 15 insertions, 1 deletions
diff --git a/common/base.j2 b/common/base.j2
index 72fc1ab4..7bed5774 100644
--- a/common/base.j2
+++ b/common/base.j2
@@ -8,7 +8,9 @@
8 </head> 8 </head>
9 <body id="mybody"> 9 <body id="mybody">
10 {% include "common/navigation.j2.inc" %} 10 {% include "common/navigation.j2.inc" %}
11 <div id="body_content">
11 {% block body_content %}{% endblock %} 12 {% block body_content %}{% endblock %}
13 </div>
12 {% include "common/footer.j2.inc" %} 14 {% include "common/footer.j2.inc" %}
13 </body> 15 </body>
14</html> 16</html>
diff --git a/styles.css b/styles.css
index f84336d0..3ab6ff25 100644
--- a/styles.css
+++ b/styles.css
@@ -15,7 +15,19 @@ html {
15} 15}
16 16
17.c_acronym { 17.c_acronym {
18 background-color: #c9ffe2; 18 background-color: #7A9F35;
19}
20
21
22#body_content a,
23#body_content a:visited {
24 text-decoration: underline;
25 color: black;
26}
27
28#body_content a:hover {
29 transition: background-color 0.3s;
30 background-color: rgba(200, 200, 200, 0.5);
19} 31}
20 32
21.c_intro { 33.c_intro {