CodingGarden / entropychat.app

A discord clone made by the Coding Garden Community.
https://entropychat.app
103 stars 37 forks source link

🚀 Created some little banners #25

Closed lucemans closed 4 years ago

lucemans commented 4 years ago

"Thought was cute, might delete later 📷"

Shows this in the console, image

And this ontop of all the html image

lucemans commented 4 years ago

Also, unrelated 👀, but im digging the dark vibe

image

w3cj commented 4 years ago

This is great! A few requests though:

  1. Specify each style on a new line so its a bit easier to read
  2. Use vw for widths instead of rem I have a very zoomed in console and things are chopped off, but with vw it resizes nicely.

This seemed to work nicely:

      console.log(
        "%c ENTROPY%cCHAT \n%c       Created by the %cCoding Garden Community%c       \n                                                    ",
        "color: #fff; font-size: 6vw; background: #290016",
        "color: #dc136c; font-size: 6vw; background: #290016",
        "color: #fff; font-size: 1.5vw; background: #290016",
        "color: #dc136c; text-decoration: underline; font-size: 1.5vw; background: #290016",
        "font-size: 1.5vw; background: #290016"
      );
lucemans commented 4 years ago

image This is what it looks like on my machine, dont know if that is preferred or not...

nmigueles commented 4 years ago

This is how it looks on my console with the VH units. (Chrome)

Captura

LGTM