summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/navigation.j2.inc2
-rw-r--r--index.html.j22
-rw-r--r--styles.css15
3 files changed, 15 insertions, 4 deletions
diff --git a/common/navigation.j2.inc b/common/navigation.j2.inc
index 2a38f7c7..c9019167 100644
--- a/common/navigation.j2.inc
+++ b/common/navigation.j2.inc
@@ -1,7 +1,7 @@
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<ul class="nav navbar-nav">
- <li class="{{ 'active' if filename == 'index.html' else '' }}"><a href="index.html">Home</a></li>
+ <li class="{{ 'active' if filename == 'index.html' else '' }}"><a class="taler_home" href="index.html">taler</a></li>
<li class="{{ 'active' if filename == 'investors.html' else '' }}"><a href="investors.html">Investors</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Resources <span class="caret"></span></a>
diff --git a/index.html.j2 b/index.html.j2
index 4f6ef316..6eb0327b 100644
--- a/index.html.j2
+++ b/index.html.j2
@@ -21,7 +21,7 @@
</div>
- <div class="contianer-fluid c_acronym adorn_bracket">
+ <div class="contianer-fluid c_acronym adorn_h3_bracket">
<div class="container">
<h2>Design goals of Taler</h2>
diff --git a/styles.css b/styles.css
index 46d8fc8d..99852dc0 100644
--- a/styles.css
+++ b/styles.css
@@ -93,12 +93,23 @@ footer {
min-height: 80vh;
}
-.adorn_bracket h3::before {
+.adorn_h3_bracket h3::before {
content: "❬";
color: #aa3939;
}
-.adorn_bracket h3::after {
+.adorn_h3_bracket h3::after {
content: "❭";
color: #aa3939;
}
+.taler_home::before {
+ content: "❬";
+ color: #aa3939;
+}
+.taler_home::after {
+ content: "❭";
+ color: #aa3939;
+}
+.taler_home {
+ font-family: 'Lucida Console', Monaco, monospace;
+}