Skip to content
Snippets Groups Projects
style.css 732 B
Newer Older
Stephen D's avatar
Stephen D committed
html {
    font-family: Open Sans,Arial;
}

body {
    color: #454545;
    font-size: 16px;
    margin: 1em auto;
    max-width: 800px;
    padding: 1em;
    line-height: 1.4;
}

pre {
    font-size:13px;
    font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

a {
    color: #07a;
}

a:visited {
  color: #941352;
}

.centered {
    text-align: center;
}

Stephen D's avatar
Stephen D committed
.align-right {
    float: right;
Stephen D's avatar
Stephen D committed
}

.header-container {
    display: flex;
}
Stephen D's avatar
Stephen D committed
.header-date {
    white-space: nowrap;
    margin: 1em 1em 1em auto;
}

img, video {
    max-width: 100%;
Stephen D's avatar
Stephen D committed
    max-height: 100%;
Stephen D's avatar
Stephen D committed

th, td {
  padding-left: 1em;
}
Stephen D's avatar
Stephen D committed

.page-link {
    padding-left: 1em;
}
Stephen D's avatar
Stephen D committed

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}