diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-03-06 07:45:55 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-03-06 07:45:55 +0100 |
commit | 8611eddf5fa59d2ac2a56206dd8b1634a8430d6b (patch) | |
tree | b14458df6b51db8763c91d9a8571c60d791ada6c | |
parent | f80459a380c97ab6300252a798db5967d3ade004 (diff) |
stylize logo
-rw-r--r-- | common/navigation.j2.inc | 2 | ||||
-rw-r--r-- | index.html.j2 | 2 | ||||
-rw-r--r-- | styles.css | 15 |
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> @@ -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; +} |