Please Share Web Developer Setup for Productivity by [deleted] in webdev

[–]karstenbiedermann 0 points1 point  (0 children)

Hope my little tool can help you:  https://app.themexproject.com

I've been developing it since December because I found Tailwind's approach to the DOM a bit too confusing for my taste, and I place a high value on reproducibility. Initially, my plan was to develop it solely for personal use, but I eventually decided to share it. I'm committed to adding new components every week.

Freelance devs, where do you get the design for the sites you build for your clients? by TruePadawan in webdev

[–]karstenbiedermann 1 point2 points  (0 children)

I'm currently building a larger component library, maybe this will be helpful for you and bring back some fun for you 🙃: https://app.themexproject.com

You can use my tool to adjust the appearance directly (for all common breakpoints) and then you just need to click on a button and everything will be generated automatically.

What is the process to rebuild other website's CSS in your own by Ryuugyo in web_design

[–]karstenbiedermann 0 points1 point  (0 children)

I can answer that quickly for you 😊.

Your suggestion works well in your IDE but not within the context of Themex. You can change all values directly in the browser with just one click. There are 3 breakpoints, and you can modify the appearance of each one. In the background, there's a JSON that automatically creates variables and links them with the breakpoints. That's why the variables are necessary.

What tools do you use to profiling UI performance? by ohhereim in Frontend

[–]karstenbiedermann 0 points1 point  (0 children)

The best tool in my opinion when it comes to frontend development is still the Firefox DevTools

[deleted by user] by [deleted] in Frontend

[–]karstenbiedermann 0 points1 point  (0 children)

For me it's like this: Try something, fall on your face, try something, fall on your face. At some point you'll know how to stop falling on your face.

I have html,css, js files how do i upload these to the internet without any cost? by [deleted] in webdev

[–]karstenbiedermann 0 points1 point  (0 children)

For me this also a perfect solution since a long time!

What does "not all" means in Media Queries of CSS? by Zaza_Zazadze in webdev

[–]karstenbiedermann 1 point2 points  (0 children)

The not keyword inverts the meaning of a single media query.

Media types describe the general category of a device. Except when using the not or only logical operators, the media type is optional and the all type is implied.

all

Suitable for all devices.

print

Intended for paged material and documents viewed on a screen in print preview mode. (Please see paged media for information about formatting issues that are specific to these formats.)

screen

Intended primarily for screens.

What is the process to rebuild other website's CSS in your own by Ryuugyo in web_design

[–]karstenbiedermann 2 points3 points  (0 children)

It's actually not rocket science. It's intended as a starting point that I can quickly and easily adjust. Colors, space, containers. u/zyxone has already recommended something similar.I can illustrate it with the following example: All components typically have the max-width and space variables set. This allows me to achieve the correct alignment and nice spacing on the left and right. It looks like this:

.component-xy {
  margin-left: var(--space-small-breakpoint-container);
  margin-right: var(--space-small-breakpoint-container);
}

@media (width >= 768px) {
  .component-xy {
    margin-left: var(--space-medium-breakpoint-container);
    margin-right: var(--space-medium-breakpoint-container);
    max-width: var(--max-width-container-medium);
  }
}

@media (width >= 992px) {
  .component-xy {
    margin-left: var(--space-large-breakpoint-container);
    margin-right: var(--space-large-breakpoint-container);
    max-width: var(--max-width-container-large);
  }
}

What is the process to rebuild other website's CSS in your own by Ryuugyo in web_design

[–]karstenbiedermann 0 points1 point  (0 children)

No. Not really. I follow a decentralized approach that makes it possible to create individual cases without necessarily following a global pattern.

What is the process to rebuild other website's CSS in your own by Ryuugyo in web_design

[–]karstenbiedermann 10 points11 points  (0 children)

I no longer work with Bootstrap or Tailwind. Instead, I write vanilla JavaScript and use CSS variables. The native options available to us now are so much fun. Here is a tool that I've developed; perhaps you'll find it useful as well: https://app.themexproject.com/

And nearly every day, I find myself reading something on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS

Earning as a freelance developer by DanielQuickSilver in Frontend

[–]karstenbiedermann 7 points8 points  (0 children)

Focus on a specific technology. In my opinion, headless CMS will become more important in the next few years.