Skip to content
Snippets Groups Projects
Commit c5d67c37 authored by Christoph Groth's avatar Christoph Groth
Browse files

minimum margin, and other style improvements

parent 7ca952df
No related branches found
No related tags found
No related merge requests found
@import url(html4css1.css);
/* keeping a scrollbar always there to make centering work properly */
/* Keeping a scrollbar always there to make centering work properly. */
html {
overflow-y: scroll;
}
......@@ -10,7 +10,14 @@ body {
max-width: 55em;
margin: 0 auto;
font-family: "Bitstream Vera Serif", Georgia, serif;
}
div.padding {
margin: 1em;
}
/* Enable hyphenation. */
body {
text-align:justify;
-webkit-hyphens: auto;
-moz-hyphens: auto;
......@@ -18,8 +25,15 @@ body {
-o-hyphens: auto;
hyphens: auto;
}
tt, pre {
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
-o-hyphens: none;
hyphens: none;
}
/* link color is an average of the kwant logo */
/* The link color is the average color of the Kwant logo. */
a {
color: #045e94;
text-decoration: none;
......@@ -81,6 +95,10 @@ div.leftside {
float: left;
}
div.rightside {
float: right;
}
div.section{
height: auto;
overflow: auto;
......
......@@ -12,6 +12,7 @@
</head>
<body>
<div class="padding">
<div id="header" class="meta">
<a href="/"><img alt="kwant_logo.png" src="/common/kwant_logo.png" /></a>
<h3 class="hidden_structure">Navigation</h3>
......@@ -28,6 +29,7 @@
${next.body()}\
<%block name="tail"></%block>\
</div>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment