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

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

CSS { In Real Life } | Optimising SVGs for the Web

QRCode

Optimising SVGs (scalable vector graphics) for web projects has the dual benefits of reducing the file size and making them easier to work with. But plenty of times I’ve opened up a web project and found that SVG assets could be made significantly smaller with some straightforward optimisations. In this article I’ll share my process for optimising SVG assets, which may help you if you’re a designer or developer unfamiliar with working with SVG on the web.

https://css-irl.info/optimising-svgs-for-the-web/
January 28, 2020 at 9:10:16 AM EST *
svg css illustrator minify
FILLER

Understanding CSS Grid: Grid Lines — Smashing Magazine

QRCode

In the first article in this series, I took a look at how to create a grid container and the various properties applied to the parent element that make up your grid. Once you have a grid, you have a set of grid lines. In this article, you will learn how to place items against those lines by adding properties to the direct children of the grid container.

https://www.smashingmagazine.com/2020/01/understanding-css-grid-lines/
January 28, 2020 at 8:40:47 AM EST *
css grid
FILLER

13 ways to vertical center - LogRocket Blog

QRCode
https://blog.logrocket.com/13-ways-to-vertical-center/
January 13, 2020 at 3:21:17 PM EST *
css align
FILLER

GitHub - cssanimation/css-animation-101: Learn how to bring animation to your web projects

QRCode

Learn how to bring animation to your web projects https://cssanimation.rocks

https://github.com/cssanimation/css-animation-101
October 29, 2019 at 11:05:03 AM EDT *
css animation
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

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
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