• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4254 shaares
6 / 15
Filters
291 results tagged css

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

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

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

46 Flex Layouts - ONE markup

QRCode
https://codepen.io/jakob-e/pen/XQyqpo
July 3, 2019 at 12:55:36 PM EDT *
flexbox css
FILLER

The Stack: Every Layout

QRCode

Since the declaration is not context sensitive, any correct application of the margin is a matter of luck. If the paragraph is proceeded by another element, the effect is desirable. But a :last-child paragraph produces a redundant margin. Inside a padded parent element, this redundant margin combines with the parent’s padding to produce double the intended space. This is just one problem this approach produces.

https://every-layout.dev/layouts/stack/
July 3, 2019 at 11:03:59 AM EDT *
css
FILLER

Kadinsky Bauhaus in CSS Grid

QRCode
https://codepen.io/tatianamac/full/RzGexa
June 24, 2019 at 2:21:46 PM EDT *
css grid bauhaus inspiration
FILLER

Relearn CSS layout

QRCode

If you find yourself wrestling with CSS layout, it’s likely you’re making decisions for browsers they should be making themselves. Through a series of simple, composable layouts, Every Layout will teach you how to better harness the built-in algorithms that power browsers and CSS.

https://every-layout.dev
June 21, 2019 at 3:20:37 PM EDT *
css
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

CSS masonry with flexbox, :nth-child(), and order

QRCode

On the surface it seems fairly easy to create a masonry layout with flexbox; all you need to do is set flex-flow to column wrap and voilà, you have a masonry layout. Sort of. The problem with this approach is that it produces a grid with a seemingly shuffled and obscure order. Items will be (unbeknownst to the user) rendered from top to bottom and someone parsing the grid from left to right will read the boxes in a somewhat arbitrary order, for example 1, 3, 6, 2, 4, 7, 8, 5, and so on so forth.

https://tobiasahlin.com/blog/masonry-with-css/
June 21, 2019 at 9:44:31 AM EDT *
flexbox css
FILLER

How to Use CSS Animations Like a Pro

QRCode

Create animation magic using keyframes, animation properties like timing, delay, play state, animation-count, iteration count, direction, fill mode and will-change.

https://stories.jotform.com/how-to-use-css-animations-like-a-pro-dfacc1e97338
June 20, 2019 at 1:52:25 PM EDT *
css animation webdesign
FILLER

A Designer's Guide to Animating Icons with CSS

QRCode

As a designer, I love coming across fun animations when visiting a site, and I have definitely been seeing more and more of them lately. Animations take illustrations and icons to the next level, making a site that much more engaging. While they are obviously attractive to look at, they also serve a functional purpose, captivating visitors and encouraging them to interact with the content.

https://www.newmediacampaigns.com/blog/guide-to-css-icon-animations
June 20, 2019 at 1:46:59 PM EDT *
animation css svg
FILLER

63 Beautiful Dark UI Examples & Design Inspiration

QRCode

A curated collection of dark UI to inspire you in your product design process.
Even more examples of dark UI could be found on our amazing visual search.

https://medium.muz.li/63-beautiful-dark-ui-examples-design-inspiration-8abaa1b86969
June 19, 2019 at 8:06:36 PM EDT *
css webdesign inspiration
FILLER

Fading out siblings on hover in CSS

QRCode

Here’s a tiny trick for making your hover states stand out, and also a cool way to target the siblings of the thing you’re hovering over. The effect is a mixture of two effects:

Scale the hovered item
Fade out the siblings
https://www.trysmudford.com/blog/fade-out-siblings-css-trick/
May 6, 2019 at 3:41:20 PM EDT *
css webdesign hover
FILLER

How To Align Things In CSS — Smashing Magazine

QRCode

We have a whole selection of ways to align things in CSS today, and it isn’t always an obvious decision which to use. However, knowing what is available means that you can always try a few tactics if you come across a particular alignment problem.

https://www.smashingmagazine.com/2019/03/css-alignment/
April 26, 2019 at 9:22:22 AM EDT *
css webdesign flexbox grid
FILLER

Animating SVG with CSS – LogRocket

QRCode

Do it yourself using the aforementioned CSS/Sass, or take a shortcut by using a plugin like Animate.CSS. It contains ready-to-use utility classes for common animations, such as fades, slides, shake, and many more.

https://blog.logrocket.com/animating-svg-with-css-83e8e27d739c
April 14, 2019 at 10:25:20 AM EDT *
css animation svg webdesign
FILLER

Using CSS Grid the right way | hey it's violet

QRCode

Use names. Use frs. Don't use a grid system. Wait, what? 2.17.2019

https://vgpena.github.io/using-css-grid-the-right-way/
March 19, 2019 at 11:22:52 AM EDT *
css grid
FILLER

CSS Grid for Designers

QRCode

How a new technology is changing layout on the web

We can create grids that better control the placement of elements both vertically and horizontally. All of this brings classic graphic design and art direction approaches back to web design.

https://open.nytimes.com/css-grid-for-designers-f74a883b98f5?ref=webdesignernews.com
March 8, 2019 at 3:52:51 PM EST *
css grid
FILLER

How I started Motion Design using high-school Physics

QRCode

As a motion enthusiast, there is one question that I have been asked the most:

“How do I start with Motion Design?”

To this, I often reply savagely, “You start with Physics”; scaring away most of the seekers 😂 But here is the thing — someone who is genuinely interested never stops with a single query. They follow up with questions after questions after questions. I love them! ❤️

https://medium.com/swiggydesign/how-i-started-motion-design-using-high-school-physics-fa6cdbf12cde
March 8, 2019 at 3:44:32 PM EST *
animation illustration css
FILLER
6 / 15
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