• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4254 shaares
5 / 32
Filters
623 results tagged webdesign

Responsive HTML/CSS Image Gallery Using “Columns”, No Extra Markup Needed! | by Jason Knight | CodeX | Nov, 2022 | Medium

QRCode

I came across this article by Miguel Nunez about making a flexbox based gallery that’s well thought out and well written, but has one major flaw. The markup reeks of still thinking in the “table…

https://medium.com/codex/responsive-html-css-image-gallery-using-columns-no-extra-markup-needed-f289236b2f17
November 11, 2022 at 11:35:24 AM EST *
css webdesign
FILLER

AutoAnimate - Add motion to your apps with a single line of code

QRCode

A zero-config, drop-in animation utility that automatically adds smooth transitions to your web app. Use it with React, Vue, Svelte, or any other JavaScript application.

https://auto-animate.formkit.com/#installation
October 31, 2022 at 9:16:53 AM EDT *
webdesign animation css
FILLER

6+5 ways to make a two-column layout: from pretty reasonable to com­pletely wrong — Vadim Makeev

QRCode

Imagine you need to create a two-column layout. Yes, the simplest one: a column on the left, a column on the right, and some gap in-between. There’s an obvious modern solution for that:

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
https://pepelsbey.dev/articles/two-columns/
October 4, 2022 at 2:11:54 PM EDT *
webdesign grid css
FILLER

Web Development recently got a whole lot easier (and you might not have noticed yet) | by Janko Hofmann | Sep, 2022 | Medium

QRCode

A lot of things that required hacks, workaround and custom code are now supported natively in all major browsers. We take a look at them. Now that the security and support lifecycle for Internet…

https://medium.com/@jankohofmann/web-development-recently-got-a-whole-lot-easier-and-you-might-not-have-noticed-yet-706bb1e0902
September 28, 2022 at 8:18:15 AM EDT *
webdesign css
FILLER

9 Side Hustle Tools That Will Blow Your Mind | by Nitin Sharma | The Startup | Aug, 2022 | Medium

QRCode

Previously, individuals were focused on making money through factories (such as the textile industry), and then businesses; subsequently, they were focused on startups, and now on building side…

  1. Medusa
    allows developers to create scalable and sophisticated commerce setups with less work and a high level of developer experience, and it is free forever.
    You can use Gumroad if you have no programming skills. I use it to effortlessly sell my digital items, and it just takes a commission on each sale.

  2. Mixkit
    The majority of my friends who upload videos to YouTube pay an annual subscription cost since they aren’t even aware of Mixkit.
    You may also utilize Pexels, which I’ve tried before and think is worth mentioning.

  3. Canva
    5.Quillbot

https://medium.com/swlh/9-side-hustle-tools-that-will-blow-your-mind-6ebb57787eb6
September 22, 2022 at 1:53:00 PM EDT *
webdesign payments video
FILLER

UX Design Challenges | UX Tools

QRCode

A set of real-world challenges to practice crucial UX design skills. Train yourself in product design and take away portfolio-worthy deliverables.

https://uxtools.co/challenges
September 21, 2022 at 10:17:16 AM EDT *
ux webdesign design forms accessibility
FILLER

New in Chrome: CSS Overview | CSS-Tricks - CSS-Tricks

QRCode

Here’s a fancy new experimental feature in Chrome! Now, we can get an overview of the CSS used on a site, from how many colors there are to the number of unused declarations… even down to the total number of defined media queries.

https://css-tricks.com/new-in-chrome-css-overview/
September 20, 2022 at 1:24:59 PM EDT *
chrome webdesign
FILLER

10 Useful Firefox Developer Tools You Should Know - Hongkiat

QRCode

Firefox being "developer's browser" has many great tools to help make our work easier. You can find more on its tool collection on the Firefox

  1. View horizontal and vertical rulers
  2. Take screenshots using CSS selectors
  3. Pick colors from web pages
  4. View page layout in 3D
  5. Disable JavaScript for current session
https://www.hongkiat.com/blog/firefox-developers-tools/
September 20, 2022 at 1:23:27 PM EDT *
firefox webdesign
FILLER

GitHub - n3r4zzurr0/svg-spinners: A collection of 24 x 24 dp SVG spinners! (CSS & SMIL)

QRCode

A collection of 24 x 24 dp SVG spinners! (CSS & SMIL) - GitHub - n3r4zzurr0/svg-spinners: A collection of 24 x 24 dp SVG spinners! (CSS & SMIL)

https://github.com/n3r4zzurr0/svg-spinners
September 16, 2022 at 3:21:37 PM EDT *
css webdesign spinner
FILLER

Creative list styling

QRCode

A look at some useful and creative ways to style a list.

Custom markers with ::before #
Styling the ::before pseudo-element was a common way to create custom list markers before ::marker came along. But even now, it can allow us more flexibility, when we need it, for visually complex list styling.

Like ::marker, we can add our own custom bullet styles using the content attribute. Unlike using ::marker, we need to do some manual positioning, as we don't get the automatic benefits offered by list-style-position. But we can position it relatively easily with flexbox, and it does open up a greater number of possibilities for alignment. For instance, we could alternate the position of the marker:

https://web.dev/creative-list-styling/
September 16, 2022 at 2:40:20 PM EDT *
webdesign css
FILLER

Creating Custom Icon Webfonts. Webfont icons — what typographers would… | by Jason Knight | CodeX | Aug, 2022 | Medium

QRCode

Webfont icons — what typographers would traditionally refer to as dingbats — are an important part of modern web development. There are so many advantages to them:

Comment:
I've used https://icomoon.io for years, because of its great selection of free icon fonts and also because it's quite easy to import self designed svgs and turn them into glyphs. It's easy to use and all relevant functionalities are free of charge.

https://web.dev/optimize-webfont-loading/#customize-the-text-rendering-delay

https://medium.com/codex/creating-custom-icon-webfonts-478a934c7ddf
August 16, 2022 at 11:46:44 AM EDT *
webdesign fonts icons svg
FILLER

-apple-system and BlinkMacSystemFont are now both obsolete and covered by system... | Hacker News

QRCode

Never, ever use system-ui as the value of font-family

https://infinnie.github.io/blog/2017/systemui.html

https://news.ycombinator.com/item?id=30136691
June 2, 2022 at 1:43:45 PM EDT *
typography webdesign fonts
FILLER

Explore DOM Events 👩‍🔬

QRCode

A visualizer to help you learn how the DOM Event system works through exploration. Explore event phases, stopping events, canceling events, passive events and more.

https://domevents.dev/
May 11, 2022 at 6:55:00 AM EDT *
javascript jquery webdesign
FILLER

accent-color - CSS: Cascading Style Sheets | MDN

QRCode

The accent-color CSS property sets the accent color for user-interface controls generated by some elements.

https://developer.mozilla.org/en-US/docs/Web/CSS/accent-color
May 6, 2022 at 1:04:44 PM EDT *
forms webdesign css
FILLER

Loaders | UI Ball

QRCode

Free loaders & spinners for your next project. Built with HTML, CSS and a soupçon of SVG. Available for copypasta or as a tree-shakeable React component library.

https://uiball.com/loaders/
April 22, 2022 at 9:46:25 AM EDT *
webdesign css spinner
FILLER

Best Practices to Reduce Cognitive Effort on Checkout Forms

QRCode

Filling out a form can frustrate anyone if it requires a high cognitive effort. A high cognitive effort causes users to think and work harder, increasing the time to complete the task. This experience can lead to page abandonment and lower conversion rates on a checkout form. To prevent this, apply these best practices to […]

https://uxmovement.com/forms/best-practices-to-reduce-cognitive-effort-on-checkout-forms/
April 15, 2022 at 8:34:40 AM EDT *
forms webdesign
FILLER

CSS { In Real Life } | Aspect Ratio is Great

QRCode

aspect-ratio is a great example of a humble property that fills a long-awaited need in the CSS community. It’s simple to use and behaves in a way that respects content, without the need for any extra CSS.

https://css-irl.info/aspect-ratio-is-great/
February 11, 2022 at 3:26:36 PM EST *
css webdesign
FILLER

22 CSS Libraries For Website Design | by Niemvuilaptrinh | Dec, 2021 | Medium

QRCode

Normalize.css is a library that helps you build all elements more consistently when displayed in today’s popular browsers. I hope that the article will provide you with useful CSS libraries for web…

https://philipwalton.github.io/solved-by-flexbox/
https://tobiasahlin.com/spinkit/
https://connoratherton.com/loaders
https://github.com/AllThingsSmitty/css-protips
https://csslayout.io/close-button/
https://bansal.io/pattern-css
https://github.com/codrops/PageTransitions
https://lokesh-coder.github.io/pretty-checkbox/#basic-checkbox

https://niemvuilaptrinh.medium.com/22-css-libraries-for-website-design-2c06d3a2ba26
January 24, 2022 at 9:47:45 AM EST *
css webdesign forms
FILLER

Modern CSS Toolkit - Slides - Presented at Stay Curious

QRCode

Stephanie Eckles

https://codepen.io/5t3ph/pen/LYzvrGv
January 21, 2022 at 9:53:34 AM EST *
webdesign css
FILLER

UI Design Best Practices for Better Scannability | Toptal

QRCode

Sixty percent of first-time visitors leave a website in less than fifteen seconds. Yet, there is an often overlooked usability factor that improves visitor retention—scannability. These UI design tips for using research, science, and strategy to layout content help convert short-term visitors to long-lasting users.

https://www.toptal.com/designers/web/ui-design-best-practices
January 20, 2022 at 9:55:50 AM EST *
webdesign ux
FILLER
5 / 32
Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community