Skip to content
Snippets Groups Projects
kwant.css 1.47 KiB
Newer Older
Christoph Groth's avatar
Christoph Groth committed
@import url(html4css1.css);

/* keeping a scrollbar always there to make centering work properly */
html {
    overflow-y: scroll;
}

Christoph Groth's avatar
Christoph Groth committed
body {
    min-width: 20em;
Christoph Groth's avatar
Christoph Groth committed
    max-width: 55em;
Christoph Groth's avatar
Christoph Groth committed
    margin: 0 auto;
    font-family: "Bitstream Vera Serif",  Georgia, serif;

    text-align:justify;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
Christoph Groth's avatar
Christoph Groth committed
}

/* link color is an average of the kwant logo */
a {
    color: #045e94;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

Christoph Groth's avatar
Christoph Groth committed
ul.navigation{
    display: block;
    text-align: center;
    padding: 0.4em;
    border-radius: 5px;
    background-color: #eeeeee;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -o-hyphens: none;
    hyphens: none;
Christoph Groth's avatar
Christoph Groth committed
}

ul.navigation li{
    display: inline;
Christoph Groth's avatar
Christoph Groth committed
}

.hidden_structure h1, h2, h3, h4, h5, h6 {
    display: none;
}

#header { margin-top: 0.5em; }
Christoph Groth's avatar
Christoph Groth committed
#footer { margin: 2em 0; }
#header, #header a, #footer {
    color: black;
Christoph Groth's avatar
Christoph Groth committed
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Bitstream Vera Sans",  Verdana, sans-serif;
    font-weight: normal;
Christoph Groth's avatar
Christoph Groth committed
}

li {
    margin: 0.3em 0
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

Christoph Groth's avatar
Christoph Groth committed
pre, code { background-color: #eee; border: 1px solid #ccc; }
pre { padding: 0.3em; }
code { padding: 0 0.1em; }
pre > code { border: none; padding: 0; }

div.leftside {
    float: left;
}
Anton Akhmerov's avatar
Anton Akhmerov committed

div.section{
    height: auto;
    overflow: auto;
}