Live data from Hacker News

Show HN: I made CSS Pro, a re-imagined Devtools for web design

csspro.com

61–70 of 299 posts

Re: Show HN: I made CSS Pro, a re-imagined Devtools for web design

#61
post #54

Does anyone know a good extension that just does the hover / inspect element for the CSS styles in a nice way like this app? Seems much more convenient than diving into dev tools every time you want to quickly check an element’s property. 30/month is a bit excessive for just that one function.

It's a clever idea and it's super simple

Add an event listener on the entire document.body

Get the event.target and the style and then descend to the children. Put it formatted in the clipboard.

Then do it as a bookmarklet and deregister the click handler when you're done so you can continue interacting with the site

It's probably around 12 lines of modern js.

You can add a fancy graphical outline to know what you're selecting with a few more lines. Just make sure you draw it on top and don't modify the elements. Use a css filter to make it work on all elements.

Modern tooling is pretty great.

Re: Show HN: I made CSS Pro, a re-imagined Devtools for web design

#63
I clicked the "try it on this page", and it's really cool! I don't really know web design so obviously there's parts I don't understand, but it's a hell of a lot easier than me trying to Google things for 2 hours, editing some text, and refreshing a page. Kudos!

Re: Show HN: I made CSS Pro, a re-imagined Devtools for web design

#64
If you use Tailwind and React, you might like Impulse[1] (disclaimer: I made it and use it almost daily)

Not only does it provide means for visual editing (for Tailwind only), but it also saves all changes to your code.

Free and open source.

[1] https://impulse.dev/

Re: Show HN: I made CSS Pro, a re-imagined Devtools for web design

#66
post #65

Came here to see comments about pricing. I think inline with others.Expected a nominal 1 time fee. Probably up to $60. $30/mo is more than Photoshop.

A comment to address the pricing that everyone is complaining about:

A web designer/developer in a decent, profitable company is probably getting paid $100k at least.

Assuming 250 working days a year with 8 hours a day of paid time, that's roughly $0.8/minute.

If this tool saves that person 90 seconds a day finding and tweaking things in a design then it's saving more than $30/month worth of their time.

It's quite cheap.

The fact Adobe charge waaaaaaay too little for PS is another matter entirely.

Re: Show HN: I made CSS Pro, a re-imagined Devtools for web design

#67
post #66
post #65

Came here to see comments about pricing. I think inline with others.Expected a nominal 1 time fee. Probably up to $60. $30/mo is more than Photoshop.

A comment to address the pricing that everyone is complaining about: A web designer/developer in a decent, profitable company is probably getting paid $100k at least. Assuming 250 working days a year with 8 hours a day of paid time, that's roughly $0.8/minute. If this tool saves that person 90 seconds a day finding and tweaking things in a design then it's saving more than $30/month worth of their time. It's quite ch…

> A web designer/developer in a decent, profitable company is probably getting paid $100k at least.

In the US maybe. Definitely not here in Italy and probably in most of Europe.

Re: Show HN: I made CSS Pro, a re-imagined Devtools for web design

#68
This is fantastic. I've been using CSS Scan for years on an almost daily basis. It's so incredibly useful. Whenever I wanted to quickly see how a design was done, I'd hit the button and hover and get instant info that was quicker and easier than having to delve into the developer tools. The ability to quickly copy and paste with it is great. Now with all the extra features, it's a really great set of tools and removes the need for me to have separate tools for some of that functionality (including the super buggy eyedropper utilities I've been using). I did not even hesitate to buy it.

Amazing work! Ignore the critics.

Re: Show HN: I made CSS Pro, a re-imagined Devtools for web design

#69
Honestly the comments are a good example on how difficult it is to sell to developers and why startup ideas that target developers are dangerous to bootstrap.

Developers have high incomes, but are quite frankly, extremely cheap. And I actually mean cheap and not frugal. They will spend 40 hours/week for months to save $5/mo. There's basically no logic apart from that developers have a poor concept of time and money and are spending averse (again, cheap.)

In this case, this tool is $30/mo, or about $360 / year, what is that, 3 dinners for 2 people in a year? The tool may save the developer, let's say 3-4 hours / week and at 52 * 3 or about 156 hours of savings a year. At even 30 an hour, it's saved the developer $4,680, or at 60/hour, close to $10,000, but I can guarantee that 99% of developers will not spend $30/month to make their lives easier.

My only recommendation is try to sell this product to businesses and maybe offer them a deal based on the amount of developers they have. So sell it do a dev shop with 10 developers at $20/developer / per month. Businesses understand the time/money tradeoff and are not cheap.

Developers, my only word of advice, is seriously.. stop being so cheap and spend some money to make your lives easier.

Re: Show HN: I made CSS Pro, a re-imagined Devtools for web design

#70
post #54

Does anyone know a good extension that just does the hover / inspect element for the CSS styles in a nice way like this app? Seems much more convenient than diving into dev tools every time you want to quickly check an element’s property. 30/month is a bit excessive for just that one function.

> Does anyone know a good extension that just does the hover / inspect element for the CSS styles in a nice way like this app?

I think the same person makes CSS Scan ($95 lifetime): https://getcssscan.com/

Post reply on HN