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

What to Use Instead of Number Inputs

QRCode

Hanna Laakso documents the problems for GOV.UK. This is what they landed on:

 <input type="text" inputmode="numeric" pattern="[0-9]*">

The inputmode attribute is pretty great, and we have a deep dive on that.

Phil Nash came to (almost) same exact conclusion, and blogged about improving the experience of a two-factor auth code input on the Twilio blog:

<input
  type="text"
  name="token"
  id="token"
  inputmode="numeric"
  pattern="[0-9]*"
  autocomplete="one-time-code"
/>

That last attribute is interesting and new to me. It means you get this super extra useful experience on browsers that support it:

https://css-tricks.com/what-to-use-instead-of-number-inputs/
June 4, 2020 at 1:49:54 PM EDT *
css webdesign forms
FILLER

Responsive Images the Simple Way - Cloud Four

QRCode

Long-time Cloud Four readers will be familiar with Jason’s definitive series on responsive images. This article is meant as a shorter companion piece focused on the most common responsive image use case: resolution switching.

code

https://cloudfour.com/thinks/responsive-images-the-simple-way/
April 11, 2020 at 10:32:01 AM EDT *
images webdesign
FILLER

CSS Viewport Units

QRCode

To solve that issue, we need to give the title a minimum font size that it can’t go below it. CSS calc() to the rescue!

.title {
font-size: calc(14px + 2vw);
}
The calc() CSS function will have a base 14px value, and it will add 2vw to it. With that in hand, the font-size value won’t become too small.

https://ishadeed.com/article/viewport-units/
March 26, 2020 at 9:58:54 AM EDT *
css webdesign
FILLER

Single-direction margin declarations – CSS Wizardry – Web Performance Optimisation

QRCode

I’m not sure how I arrived at this rule, but I’m really glad I did and I would likely never ever change it. The basic premise is that you should try and define all your margins in one direction. This means always use margin-bottom to push items down the page, and margin-left to push them across the page. I’m going to focus mainly on margin-bottom throughout this article as it’s the most obvious to explain, but this can be applied to both directions (top/bottom, right/left).

https://csswizardry.com/2012/06/single-direction-margin-declarations/
March 13, 2020 at 4:05:21 PM EDT *
css margins webdesign
FILLER

Stop using Material Design text fields! - Matsuko Friedland

QRCode

Note: Although it is common on the web, and is in some of the images below, you should never make visible form fields without a visible label.

https://www.matsuko.ca/blog/stop-using-material-design-text-fields/
March 13, 2020 at 2:30:53 PM EDT *
forms webdesign
FILLER

Learn Box Alignment

QRCode

Are you ready to learn how box alignment works for CSS Grid and Flexbox? This article is for you.

https://ishadeed.com/article/learn-box-alignment/
March 7, 2020 at 7:50:59 PM EST *
flexbox grid css webdesign
FILLER

How the Illustration Design Trend Caught Fire & Why Every SaaS Is Rebranding

QRCode

Nobody wants their brand to look like it hasn’t been updated in years. You only get one chance to make a first impression … and most marketers and designers will do anything to make a good first impression. Especially if your competitors are all out there looking fresh and up-to-date.

https://unbounce.com/design/branding-cartoon-illustration-design-trend/
February 17, 2020 at 10:08:01 AM EST *
illustration webdesign
FILLER

Font Sizes in UI Design: The Complete Guide – Learn UI Design

QRCode

If you have, dear reader, bookmark the crap out of this page. These are up-to-date (2019) guidelines and best practices for font sizes across all major platforms – iOS 12, Android/Material Design, and responsive web. Here’s a handy table of contents for ya:

https://learnui.design/blog/ultimate-guide-font-sizes-ui-design.html
February 11, 2020 at 1:32:52 PM EST *
webdesign typography ux
FILLER

Visual Dividers in User Interfaces: Types and Design Tips | Tubik Studio

QRCode

Visual Kinds of Dividers

Talking about dividers, we can analyze them in two aspects: their appearance and their functions. Starting with the visual part, there are five basic and broadly used methods of dividing content in user interfaces:

  • lines
  • color
  • negative space
  • shadows/volume
  • images
https://tubikstudio.com/visual-dividers-user-interface/
January 3, 2020 at 2:06:02 PM EST *
webdesign tutorial
FILLER

The Evolution of Material Design’s Text Fields - Google Design - Medium

QRCode

The results of the two studies showed that these elements of text fields were of most value:

  • Enclosed text fields with a rectangular (box) shape performed better than those with a line affordance
  • The text field box should be represented with a semi-transparent fill and a bottom line or with a fully transparent fill and an opaque stroke.
  • Color contrast of the text field’s lines or strokes met the minimum 3:1 contrast ratios with the background
  • Label text should be placed within the bounds of the text field box
  • Text fields should have rounded corners
https://medium.com/google-design/the-evolution-of-material-designs-text-fields-603688b3fe03
November 5, 2019 at 2:43:18 PM EST *
webdesign styleguide forms
FILLER

Build a Classic Layout FAST in CSS Grid - YouTube

QRCode

For years, we've struggled to build resilient layouts on the web, but CSS Grid promises to change all that — and you can start using it now, with only a few properties and basic concepts. Learn how to build some previously-complex layouts in under 10 minutes, with only a few lines of code. Miriam Suzanne walks you through a practical demo.

https://www.youtube.com/watch?v=KOvGeFUHAC0&feature=youtu.be
October 29, 2019 at 11:03:25 AM EDT *
webdesign grid video
FILLER

Optimizing images for the web - an in-depth guide - DEV Community 👩‍💻👨‍💻

QRCode

Table Of Contents

  • Calculating JPG image file size
  • Online image optimization
  • Automated solutions
  • Image loading optimization
  • Using CDN
  • WebP image format
  • Optimization for higher pixel density screens
  • Conclusion - Optimization priority
https://dev.to/prototyp/optimizing-images-for-the-web-an-in-depth-guide-4j7d
October 21, 2019 at 1:10:04 PM EDT *
webdesign jpg images
FILLER

Google HTML/CSS Style Guide

QRCode
  • Specifying type attributes in these contexts is not necessary as HTML5 implies text/css and text/javascript as defaults. This can be safely done even for older browsers.
https://google.github.io/styleguide/htmlcssguide.html
August 21, 2019 at 10:43:32 AM EDT *
css webdesign styleguide
FILLER

5 Rules for Choosing the Right Words on Button Labels

QRCode
  • Use Action Verbs (not generic yes/no)
  • Use Precise Diction (Remove vs. Delete)
  • Use Task-Specific Language (Publish vs Submit)
  • Use the Active Imperative Form (Read Details vs Click Here for Details)
  • Use Sentence-Style Capitalization (Friendlier than Title Case)

Comment:
If you test people on an app the first time they use it, Title Case will slow you down, just as it probably did just now. However, it is much easier to see the shape of Title Case text in buttons than sentence case buttons.

https://uxmovement.com/buttons/5-rules-for-choosing-the-right-words-on-button-labels/
August 21, 2019 at 10:31:46 AM EDT *
ux buttons webdesign
FILLER

Everything You Ever Wanted to Know About inputmode | CSS-Tricks

QRCode

The inputmode attribute that helps browsers on devices with on-screen keyboards decide which keyboard to display (e.g. telephone, numeric, email, search) has been around for long, but it wasn’t until a few months ago that Safari for iOS and Chrome for Android adopted it. Time to get familiar with the concept. Christian Oliff’s article “Everything You Wanted To Know About inputmode” is a great primer to dive deeper into the attribute and how to make use of it. (cm)

https://css-tricks.com/everything-you-ever-wanted-to-know-about-inputmode/
August 20, 2019 at 11:15:10 AM EDT *
css webdesign mobile
FILLER

This Ain’t Disney: A practical guide to CSS transitions and animations

QRCode

The answer is physics. Specifically Newtonian physics, the branch of science dedicated to apples falling from trees onto scientists, also referred to as classical mechanics.

https://blog.prototypr.io/this-aint-disney-a-practical-guide-to-css-transitions-and-animations-a8b87e7c5531
August 16, 2019 at 3:45:16 PM EDT *
css animation webdesign
FILLER

Button differentiation done right – UX Collective

QRCode

Buttons normally have those traits in common: font style, font size, font color, button color, button size, borders, rounded corners, drop shadow or glow effects, hover state and animations.

If we try to change too many of these traits, the buttons might feel too foreign to the general design of the project, and in this case the user will just click the most distinct one, and we’re basically back to just one CTA button.

https://uxdesign.cc/button-differentiation-done-right-5553605ea08a
July 12, 2019 at 1:11:46 PM EDT *
buttons css webdesign
FILLER

How white space killed an enterprise app (and why data density matters)

QRCode

Spacious. Minimalist. Clean. Bountiful white space has become the de facto design aesthetic in consumer apps.

A large business by its nature has massive-scale data and usually thousands of users who directly interact with it—searching, manipulating, reporting, and more. They need to move through that data quickly, without a lot of digging around in the interface.

Can I do a better job of grouping related information?

https://uxdesign.cc/how-white-space-killed-an-enterprise-app-and-why-data-density-matters-b3afad6a5f2a
July 3, 2019 at 2:08:40 PM EDT *
webdesign tables
FILLER

Designing button focus states for better usability - DEV Community 👩‍💻👨‍💻

QRCode

Many people exclusively use keyboards to navigate, and rely on the focus state to know where they are on the page.

There's a huge variety of reasons why someone might use a keyboard over a mouse, and for many, using the mouse as a fallback just isn't an option.

https://dev.to/elizabethschafer/designing-button-focus-states-for-better-usability-gm2
July 3, 2019 at 12:57:44 PM EDT *
css webdesign buttons accessibility
FILLER

The Front-End Checklist

QRCode

An Exhaustive List of all the Elements you need to have/test Before Launching your Website To Production.

https://codeburst.io/the-front-end-checklist-8b2292fdda44
June 21, 2019 at 10:56:03 AM EDT *
css webdesign html
FILLER
10 / 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