💾 Archived View for gemlog.blue › users › acdw › 1594305933.gmi captured on 2023-07-22 at 18:22:04. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2020-10-31)

-=-=-=-=-=-=-

I use

portal.mozz.us

at work to access geminispace. I like it because it's simple, but it's a little ugly in my opinion. I *need* text to be limited to 70ch, a la

"58 bytes of CSS to look great nearly everywhere"

-- in fact, I style most of my pages now starting off this idea.

So I wrote a little userstyle for portal.mozz.us. I was going to post it on userstyles.org, but you need an account and I'm not about to make one there. So here's the userstyle, exported from Stylus in the Mozilla Format, for whatever you want to do. The license is ...

WTFPL, why not?

@-moz-document domain("portal.mozz.us") {
.body {
    font: 18px/1.4 serif;
    max-width: 70ch;
    padding: 2ch;
}

.gemini > pre {
    font: 14px/1 monospace;
    padding: 1ch;
    background-color: #eee;
    width: max-content;
    overflow-x: visible;
}

.gemini a {
    text-decoration: none;
    color: inherit;
    background: #eef;
    padding: 0 2ch;
}

.gemini a::before {
    content: "\21d2 ";
    position: relative;
    left: -2ch;
}

.gemini a:hover {
    color: blue;
}

.gemini a[href^="http"]::before {
    content: "\21dd ";
}

.gemini a[href^="gopher"]::before {
    content: "\21ac";
}

.response-table {
    position: absolute;
    top: 0;
    right: 0;
    background: white;
}
}

CHANGELOG