• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4336 shaares
7 / 32
Filters
633 results tagged webdesign

Pure CSS Custom Styled Radio Buttons | Modern CSS Solutions

QRCode

Learn to create custom, cross-browser, theme-able, scalable radio buttons in pure CSS and ensuring styles remain accessible across states.

Also checkboxes:
https://moderncss.dev/pure-css-custom-checkbox-style/

https://www.sarasoueidan.com/blog/inclusively-hiding-and-styling-checkboxes-and-radio-buttons/

https://moderncss.dev/pure-css-custom-styled-radio-buttons/
October 29, 2021 at 11:36:14 AM EDT *
checkbox forms buttons webdesign
FILLER

Jorge Arango | Information architect, author, and educator

QRCode

Information architect, author, and educator

https://jarango.com/
October 26, 2021 at 10:26:08 AM EDT *
webdesign inspiration templates
FILLER

A Universal Way to Set Up a Harmonious Line Spacing | by Onchky | Medium

QRCode

Your Instagram feed may tell you that the line spacing should be 20% more than the font size. You may see that the difference should be as much as 50% as well.

There is no magic ratio. Text blocks will look different with different typefaces because of differences in Cap Height and X-height. While 120% is very likely to work for interface fonts — because they were created with a certain Cap to X-height ratio — the rest are problematic.

Material Design

To solve the problem, you should not use a common index for all fonts, but an individual one, depending on its X-height. It is necessary to take a lowercase letter without extensions — for example, N — of the same point size as the typed text, and put it between two lines of text so that the upper boundary of the letter touches the typing line of the first line, and the lower boundary touches the upper height of the uppercase letter.

https://onchky.medium.com/a-universal-way-to-set-up-a-harmonious-line-spacing-9c44769cca6a
October 21, 2021 at 10:15:06 AM EDT *
webdesign typography fonts
FILLER

9 Types of Top CSS Frameworks In 2021 - 1stWebDesigner

QRCode

The benefit of a CSS framework is that it helps you create a number of eye-catching layouts without having to start from scratch.

  1. For Simple Needs, Use Class-less
    Some examples of classless frameworks include sakura, watercss, holiday.css, bamboo css, attricss, and basic.css.

  2. To Build on Mobile, Opt for Very Lightweight
    Examples of very lightweight CSS include pure, chota, and milligram.

  3. For an Open-and-Go Solution, Use General Purpose
    Examples of general purpose CSS include bootstrap, primer, foundation, and base.

  4. For Niche Needs, Opt for Specialized
    An example of a specialized CSS is bojler, which is used for developing lightweight and responsive email templates. It’s no secret that developing email templates is a pain.

  5. Looking to Skip Javascript? Material Design is the Way to Go
    Material design CSS frameworks include newer versions of UI controls such as check boxes, text fields, column layouts ,and typography. MD is can be used across browsers by anyone who wants to create more portable and usable web pages.

  6. For Greater Attention to Detail Utility-Based Frameworks Are Best
    Some examples of utility-based frameworks include tachyons and tailwind CSS.

  7. For Web App Development and Mobile-First, Look to Base/Reset/Normalize
    Some great examples of base css frameworks include sanitize.css, ress, minireset.css, normalize.css, modern normalize, and natural selection.

  8. For More Flexibility, Toolkits Work Well
    An example of a toolkit CSS is Bourbon. Bourbon aims for clarity, is pure Sass and lacks visual opinion.

  9. Honorable Mentions Are Those with Stalled Development
    Some examples of stalled development frameworks include flexbox grid, semantic UI, materialize, neat, wing, and propeller.

https://1stwebdesigner.com/9-types-of-top-css-frameworks-in-2021
September 29, 2021 at 5:20:34 PM EDT *
css webdesign frameworks
FILLER

Centering checkboxes with multi-line labels

QRCode

Checkboxes are the worst
But I'm here to help make them better.

Here's an approach I use to always perfectly center them with the first line of text, no matter the text length or size

https://codepen.io/adamwathan/pen/bGNxMpz?editors=1000
September 29, 2021 at 10:09:33 AM EDT *
webdesign forms checkbox
FILLER

Home | Laws of UX

QRCode

Laws of UX is a collection of best practices that designers can consider when building user interfaces.

Aesthetic-Usability Effect

Users often perceive aesthetically pleasing design as design that’s more usable.

https://lawsofux.com/
September 21, 2021 at 8:51:22 AM EDT *
ux webdesign
FILLER

Why the GOV.UK Design System team changed the input type for numbers - Technology in government

QRCode

We take a look at why the GOV.UK Design System changed the element it uses for inputting numbers, making it more accessible and easier to use.

Using <input type="text" inputmode="numeric" pattern="[0-9]*"> allows for a degree of separation between how the user enters data (“input mode”), what the browser expects the user input to contain (type equals number), and potentially how it tries to validate it.

https://technology.blog.gov.uk/2020/02/24/why-the-gov-uk-design-system-team-changed-the-input-type-for-numbers/
September 17, 2021 at 1:31:57 PM EDT *
forms webdesign mobile
FILLER

Why some designs look messy, and others don’t

QRCode

Meet the Extendabox-rule

The four strokes making up a box end at each intersection. But in our unconsciousness, every one of those lines draws out an imaginary line much further, through the entirety of your design.

A grid works the other way around: you define a set of columns, gutters, and rows to make up certain sections of your design, and you then position all of your objects onto that grid.

https://uxdesign.cc/why-some-designs-look-messy-and-others-dont-1755b8ce22ff
September 17, 2021 at 8:21:37 AM EDT *
grid webdesign design
FILLER

Bulma: Free, open source, and modern CSS framework based on Flexbox

QRCode

Bulma is a free, open source CSS framework based on Flexbox and built with Sass. It's 100% responsive, fully modular, and available for free.

For the best results using Bulma, it's recommended to use the control element as often as possible.

<div class="field">
  <label class="label">Username</label>
  <div class="control has-icons-left has-icons-right">
    <input class="input is-success" type="text" placeholder="Text input" value="bulma">
    <span class="icon is-small is-left">
      <i class="fas fa-user"></i>
    </span>
    <span class="icon is-small is-right">
      <i class="fas fa-check"></i>
    </span>
  </div>
  <p class="help is-success">This username is available</p>
</div>
https://bulma.io/
September 16, 2021 at 11:19:34 AM EDT *
css webdesign frameworks
FILLER

A 4-step process for testing the accessibility of your designs

QRCode

Setting up your screen reader

For this guide, I’m going to use VoiceOver on Mac, a screen reader program that comes on new Mac computers, iPhones, and iPads. If you’re on Windows, you can use JAWS or NVDA. I’ll provide guiding questions and examples of good and bad interactions, so your OS shouldn’t matter.
The first step is to enable your screen reader and get familiar with its keyboard shortcuts.

  1. Tab
  2. Ctrl-Option- ← →
  3. Ctrl-Option-Cmd-H
  4. Ctrl–Option–Cmd–G
    Bonus: disabled buttons
https://ux.shopify.com/a-4-step-process-for-testing-the-accessibility-of-your-designs-17bc95bceafe
September 16, 2021 at 11:15:39 AM EDT *
webdesign accessibility
FILLER

Concentric Circle Spinner - Frontend Horse

QRCode

A cool spinner made only with divs, some border tricks, and one CSS animation.

I really enjoyed digging into this pen by Luke Richardville. You wouldn’t think it had much to teach, seeing as it’s only 12 lines of Pug and 32 lines of SCSS.

https://codepen.io/lukerichardville/pen/NWpYdQY

https://frontend.horse/articles/concentric-circle-spinner/
September 9, 2021 at 2:35:09 PM EDT *
webdesign spinner
FILLER

Negative Space – How Best to Use It in Website and App Design

QRCode

In this post, UXPin looks at using negative space in design and how you can use it to create more engaging websites and apps.

Good web design with tall line-height

https://www.uxpin.com/studio/blog/what-is-negative-space-in-design/
August 25, 2021 at 9:55:31 AM EDT *
webdesign design typography
FILLER

Get illustrations for Websites and applications

QRCode

100 Colorful vector illustration to design website banners and landing pages, commercial license and SVG FIGMA SKETCH AI files included

https://getillustrations.com/illustration-pack/flat-vector-illustrations-for-websites
August 23, 2021 at 2:49:07 PM EDT *
illustration webdesign stock
FILLER

The secret of CSS triangles. If you ever wanted to create triangles… | by Mathilde E. | Achiev | Medium

QRCode

If you ever wanted to create triangles using CSS, you probably found code samples on stack-overflow or css-tricks. But how do they really work ? Understanding the process behind creating triangles…

https://medium.com/achiev/the-secret-of-css-triangles-a7534431d29f
July 30, 2021 at 7:58:59 AM EDT *
css webdesign
FILLER

My current HTML boilerplate - Manuel Matuzović

QRCode

Every element I use for the basic structure of a HTML document, with explanations why.

Usually when I start a new project, I either copy the HTML structure of the last site I built or I head over to HTML5 Boilerplate and copy their boilerplate.

https://html5boilerplate.com/

https://www.matuzo.at/blog/html-boilerplate/
June 16, 2021 at 1:58:03 PM EDT *
webdesign html boilerplate
FILLER

Cache-Control for Civilians – CSS Wizardry – Web Performance Optimisation

QRCode

What does Cache-Control really do? In basic terms? Let’s find out!

https://csswizardry.com/2019/03/cache-control-for-civilians/
June 16, 2021 at 1:53:07 PM EDT *
webdesign performance caching
FILLER

How To Use Help Elements To Improve Your Designs — Smashing Magazine

QRCode

When designing a website, the most important thing is to make it as usable and convenient as possible. On a website on which users could possibly get confused, it is best to include help elements. Help elements come in all different shapes and sizes: an entire page, a suggestion box or a quick tip. But they all have one thing in common: besides doing the obvious (i.e. helping the user), help elements provide an extra convenience that brings the website closer to that sought-after usability.

https://www.smashingmagazine.com/2009/04/help-elements-design-showcase/
May 28, 2021 at 7:29:28 PM EDT *
webdesign design forms
FILLER

Teach Yourself Graphic Design: A Self-Study Course Outline

QRCode
https://design.tutsplus.com/articles/teach-yourself-graphic-design-a-self-study-course-outline--psd-3520
May 28, 2021 at 7:27:45 PM EDT *
webdesign design
FILLER

Responsive Grid Design: Ultimate Guide

QRCode

I find working with the grid helpful. The grid helps to maintain consistency across the different layouts and make faster design decisions. Grids give more precise control over alignments and layout on different screen sizes.

Fixed-Width Layout Grid Setup

To set up a fixed-width grid, we use fixed numeric value for gutters and columns. I recommend 74px wide columns, 32px wide gutters and 16px side margins on each side.

Mobile View

For mobile devices, we use a fluid grid where gutters and side margins have fixed numeric values. I recommend 16px wide gutters and 16px wide side margins on each side.
We can design mobile interfaces at 360×640 sized artboard.
Mobile devices have a small screen resolution. If we display the 12 separate columns, gutters, and side margins on such a small resolution, it becomes quite cumbersome to design at scale.

https://medium.muz.li/responsive-grid-design-ultimate-guide-7aa41ca7892
May 26, 2021 at 10:28:24 AM EDT *
webdesign grid
FILLER

Better in Black: Rethinking our Most Important Buttons | Spotify Design

QRCode

If there's one button you use every time you open Spotify, it’s the play button. Today, we’re updating it significantly for better accessibility.

https://spotify.design/article/better-in-black-rethinking-our-most-important-buttons?ref=heydesigner
May 26, 2021 at 10:26:07 AM EDT *
accessibility webdesign buttons
FILLER
7 / 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