add domain right of the menu, standardize menu help-code

This commit is contained in:
B. Petersen
2023-12-12 19:27:39 +01:00
parent f467d7bcd1
commit ac2517df4b
2 changed files with 27 additions and 6 deletions

19
www/src/main.css Normal file
View File

@@ -0,0 +1,19 @@
#menu {
display: flex;
flex-wrap: wrap;
padding: 0;
}
#menu li {
display: inline-block;
padding-right: 0.5em;
}
#domain {
margin-left: auto;
}
#domain a {
color: #888;
}

View File

@@ -7,16 +7,18 @@
{% endif %} {% endif %}
<title>{{ config.mail_domain }} {{ pagename }}</title> <title>{{ config.mail_domain }} {{ pagename }}</title>
<link rel="stylesheet" href="./water.css"> <link rel="stylesheet" href="./water.css">
<link rel="stylesheet" href="./main.css">
<link rel="icon" href="/logo.svg"> <link rel="icon" href="/logo.svg">
<link rel=”mask-icon” href=”/logo.svg” color=”#000000"> <link rel=”mask-icon” href=”/logo.svg” color=”#000000">
</head> </head>
<body> <body>
<div> <ul id="menu">
<a href="index.html">home</a> &nbsp; <li><a href="index.html">home</a></li>
<a href="info.html">more info</a> &nbsp; <li><a href="info.html">info</a></li>
<a href="privacy.html">privacy</a> &nbsp; <li><a href="privacy.html">privacy</a></li>
<a href="https://github.com/deltachat/chatmail">public development ↗</a> <li><a href="https://github.com/deltachat/chatmail">public code ↗</a></li>
</div> <li id="domain"><a href="index.html">{{ config.mail_domain }}</a></li>
</ul>
{{ markdown_html }} {{ markdown_html }}
</body> </body>
</html> </html>