about summary refs log tree commit diff
path: root/web/homepage/static/tazjin.css
/* Jetbrains Mono font from https://www.jetbrains.com/lp/mono/
   licensed under Apache 2.0. Thanks, Jetbrains! */
@font-face {
    font-family: jetbrains-mono;
    src: url(jetbrains-mono.woff2);
}

@font-face {
    font-family: jetbrains-mono;
    font-weight: bold;
    src: url(jetbrains-mono-bold.woff2);
}

@font-face {
    font-family: jetbrains-mono;
    font-style: italic;
    src: url(jetbrains-mono-italic.woff2);
}

@font-face {
    font-family: jetbrains-mono;
    font-weight: bold;
    font-style: italic;
    src: url(jetbrains-mono-bold-italic.woff2);
}

/* Generic-purpose styling */

body {
    margin: 40px auto;
    line-height: 1.6;
    font-size: 18px;
    padding: 0 10px;
    font-family: jetbrains-mono, monospace;
}

p, a :not(.uncoloured-link) {
    color: inherit;
}

h1, h2, h3 {
    line-height: 1.2
}

/* Homepage styling */

.dark {
    max-width: 800px;
    background-color: #181818;
    color: #e4e4ef;
}

.dark a {
    color: #96a6c8;
}

.entry-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.interblag-title {
    text-decoration: none;
}

.entry {
    width: 42%;
    margin: 5px;
    padding-left: 5px;
    padding-right: 5px;
    border: 2px solid;
    border-radius: 5px;
    flex-grow: 1;
}

.misc {
    color: #268bd2;
    border-color: #268bd2;
}

.project {
    color: #9e95c7;
    border-color: #9e95c7;
}

.blog {
    color: #95a99f;
    border-color: #95a99f;
}

.entry-title {
    color: inherit !important;
    font-weight: bold;
    text-decoration: none;
}

.entry-date {
    font-style: italic;
}

/* Blog styling */

.light {
    max-width: 650px;
    color: #383838;
}

.blog-title {
    color: inherit;
    text-decoration: none;
}

.footer {
    text-align: right;
}

.date {
    text-align: right;
    font-style: italic;
    float: right;
}

.inline {
    display: inline;
}

.lod {
    text-align: center;
}

pre {
    min-width: 100%;
    /* some code snippets escape to the side, but I don't want to wrap them */
    width: max-content;
}

img {
    max-width: 100%;
}