romanzolotarev.com is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Site description
/pub
Admin account
@hi@romanzolotarev.com

Search results for tag #css

[?]Vale » 🌐
@vale@fedi.vale.rocks

I’m (likely) the only developer left still taking professional contracts to build custom stylesheets for old Reddit, the version of Reddit prior to the 2018 redesign.

Much of the info once available has succumbed to link rot, so I’ve covered what I can in a modern article here: https://www.reddit.com/r/csshelp/comments/1s4p96w/a_modern_guide_to_old_reddit_customisation_and/

#Reddit #OldReddit #CSS #WebDesign

    4 ★ 1 ↺

    [?]roman » 🌐
    @hi@romanzolotarev.com

    another trick, if you want to visually shorten long links, but only when they are longer than its container width (at max-width)

    a {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    }
    hello, pico-8-edu.com :)


      4 ★ 1 ↺

      [?]roman » 🌐
      @hi@romanzolotarev.com

      extracted some and magic from e11e's homepage to add photocopy effect to your pages

      <style>
      body {
      filter: url();
      }
      svg {
      display: none;
      }
      </style>
      <svg width="0" height="0">
      <filter id="x">
      <feturbulence
      basefrequency="1 2"></feturbulence>
      <fedisplacementmap
      in="SourceGraphic"
      scale="2"></fedisplacementmap>
      </filter>
      </svg>
      see also

        1 ★ 0 ↺

        [?]roman » 🌐
        @hi@romanzolotarev.com

        had to cover few more use cases, but still quite minimal :

        html { font-family: sans-serif; max-width: 40rem; margin: 1rem auto; }
        img { max-width: 100%; border-radius: 0.4rem; }
        @media (max-width: 40rem) { pre { overflow-x: auto; } }

          roman boosted

          [?]David Bisset » 🌐
          @davidbisset@phpc.social

          Modern code snippets, side by side with the old hacks they replace.

          modern-css.com/

          "Stop writing CSS like it's 2015."

            7 ★ 3 ↺
            passthejoe boosted

            [?]roman » 🌐
            @hi@romanzolotarev.com

            made my instance pretty. now i feel like i don't need any 3rd party clients. works for me on small and large screens, in the sunlight and in the dark. total cost—10kb of

            @grunfink@comam.es, thanks again for snac ❤️

              3 ★ 0 ↺

              [?]roman » 🌐
              @hi@romanzolotarev.com

              drafted snac.css

              • few colors
              • default fonts and everything
              • large high contrast font for content
              • small fonts for controls
              • dark and light color schemes
              • big and small screens
              • works with styles from my site
              please note, it's just a draft.

              updated /var/snac/data/server.json

                "cssurls": [ "/style.css", "/snac.css" ],
              while keeping /var/snac/data/styles.css empty, otherwise snac re-creates it with default styles... :)