• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4367 shaares
5 / 16
Filters
305 results tagged css

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

Documentation - Materialize

QRCode

Materialize is a modern responsive CSS framework based on Material Design by Google.

https://materializecss.com/
September 16, 2021 at 11:13:37 AM EDT *
css frameworks
FILLER

Designing Beautiful Shadows in CSS

QRCode

When I look around the web, most of the shadows I see are fuzzy grey boxes. It doesn't have to be this way, though! CSS gives us the tools to create rich, lush, lifelike shadows. In this tutorial, I'll show you how.

https://www.joshwcomeau.com/css/designing-shadows/
September 15, 2021 at 11:14:57 AM EDT *
css shadow
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

Building hover menus in CSS

QRCode

https://github.com/kenreilly/css-hover-menu-demo

This project demonstrates how to build various hover menus in pure HTML/CSS.

Examples include:
Standard basic hover menu
Hover menu with nested menus
Radial "pie" menu

https://uxdesign.cc/building-hover-menus-in-css-fd901931f06f
June 14, 2021 at 9:13:18 AM EDT *
css menu
FILLER

A Modern CSS Reset - Post - Piccalilli

QRCode

In this modern era of web development, we don’t really need a heavy-handed reset, or even a reset at all, because CSS browser compatibility issues are much less likely than they were in the old IE 6 days. That era was when resets such as normalize.css came about and saved us all heaps of hell. Those days are gone now and we can trust our browsers to behave more, so I think resets like that are probably mostly redundant.

https://github.com/andy-piccalilli/modern-css-reset

https://piccalil.li/blog/a-modern-css-reset/
May 18, 2021 at 1:26:48 PM EDT *
css reset webdesign
FILLER

Optimal Overlay Finder - Readable Text on a Background Image

QRCode

If you want to make text better stand out against a background image, there’s a little trick: You can use a CSS linear-gradient overlay with a certain opacity on top of the image to improve color contrast.

How to determine the opacity to use for the overlay? The Optimal Overlay Finder helps you find out. You upload an image, enter your text and choose your overlay and text colors, and the tool shows you a preview of what the overlay looks like when applied to your image, as well as the optimal overlay opacity.

https://twitter.com/addyosmani/status/1365735686838493187

https://codepen.io/yaphi1/pen/oNbEqGV
April 12, 2021 at 9:47:26 AM EDT *
gradients webdesign css
FILLER

Make your CSS Readable and Maintainable with the CSS “Enabling” Pattern

QRCode

Instead of using “Disabling” selectors, you should focus on writing “Enabling” selectors.

a:not(:last-child) {
  margin-bottom: 1rem;
}

or

a + a {
  margin-top: 1rem;
}
https://javascript.plainenglish.io/make-your-css-readable-and-maintainable-with-the-css-enabling-pattern-35b2965d7b3b
March 31, 2021 at 9:30:18 AM EDT *
css webdesign
FILLER

Handling Text Over Images in CSS

QRCode

Learn how to handle text over images in CSS by taking accessibility in mind

https://ishadeed.com/article/handling-text-over-image-css/
March 26, 2021 at 9:50:15 AM EDT *
css typography webdesign
FILLER

How to Make Badass Shadows

QRCode

X 0
Y 5
Blur 12
Alpha 8%
Colro #004365

https://blog.prototypr.io/how-to-make-badass-shadows-564b3a30aba4
March 9, 2021 at 9:01:48 PM EST *
shadow css
FILLER

ButtonBuddy - Accessible button contrast generator

QRCode

Learn what it takes to ensure your buttons or button-styled links have accessible contrast across all states and surfaces, then use the generator to check and adjust your button palette.

https://buttonbuddy.dev/#generator
January 29, 2021 at 11:50:09 AM EST *
buttons accessibility css webdesign
FILLER

Gradient Magic - Fantastic and Unique CSS Gradients

QRCode

A Free Gallery of Fantastic and Unique CSS Gradients.

https://www.gradientmagic.com/
January 29, 2021 at 11:48:20 AM EST *
css gradients
FILLER

10 CSS Tricks You Need to Know About (Part 2) | by Before Semicolon | Jan, 2021 | Medium

QRCode

2 — Text tooltips

https://codepen.io/beforesemicolon/pen/BaKLeRL

6 — Extend the clickable area

The following example simply extends the type circle dot button click area by 2(two) by positioning a pseudo-element on top and centered.

8 — Frosted glass effect

.container {
   background-color: rgba(255, 255, 255, .15);
   backdrop-filter: blur(5px);
}

9 — Image grid with random height (Mansory Layout)

This is the famous Pinterest layout that you can use the old column property to accomplish quite easily.

10 — Math with Calc

Nothing in this world requires no math and the CSS calc function is magical.

https://beforesemicolon.medium.com/10-css-tricks-you-need-to-know-about-part-2-df52ee0b2937
January 26, 2021 at 8:34:35 AM EST *
css webdesign
FILLER

Why Tailwind Isn't for Me - DEV Community

QRCode

I think the folks building Tailwind are talented and nice people. But at a pure technical level, I simply don't like Tailwind. Whoever it was built for, it was not built for me.

  • Reason 1: Tailwind promotes ugly-ass HTML.
  • Reason 2: @apply is fundamentally incompatible and non-standard (and largely unnecessary).
  • Reason 3: Tailwind's focus on design systems and tokens could mostly be replaced by CSS Custom Properties (aka variables)—which IS a standard.
  • Reason 4: Tailwind forgets that web components exist.
  • Reason 5: Finally, Tailwind encourages div/span-tag soup.

...using <div> and <span> tags everywhere in your markup is an anti-pattern. We live in a world where custom elements (aka <whatever-you-can-dream-of>) are fully supported and enabled by modern browsers.

https://dev.to/jaredcwhite/why-tailwind-isn-t-for-me-5c90
January 21, 2021 at 2:30:32 PM EST *
tailwind css webdesign
FILLER

Minimal CSS Frameworks — dailydevlinks

QRCode

Looking for a lighter framework for your next project? Here's a list of some of the best minimal CSS frameworks out there.

https://hakanalpay.com/bahunya/
Dark mode based on tacit

https://github.com/yegor256/tacit

https://purecss.io/
Pure builds on Normalize.css and provides layout and styling for native HTML elements, plus the most common UI components. It’s what you need, without the cruft.

🔗 https://picturepan2.github.io/spectre/index.html
Spectre.css is a lightweight, responsive and modern CSS framework for faster and extensible development.

https://andybrewer.github.io/mvp/
MVP styles your root HTML elements, so you don’t need to learn a new CSS framework or naming conventions.
It’s like an amped up CSS reset that you can toss into any project to get decent styling.

https://newcss.net/
new.css is a classless CSS framework to write modern websites using only HTML.

https://github.com/oxalorg/sakura
Wonderful for people not really good or interested with design as sakura is nothing but a set of reasonable defaults

https://watercss.kognise.dev/
Now you can write your simple static site with nice semantic html, and Water.css will manage the styling for you.

https://jenil.github.io/chota/
Magical 12 column grid
Comes with a handful of components & utilities

http://getskeleton.com/
You should use Skeleton if you're embarking on a smaller project or just don't feel like you need all the utility of larger frameworks. Skeleton only styles a handful of standard HTML elements and includes a grid, but that's often more than enough to get started. In fact, this site is built on Skeleton and has ~200 lines of custom CSS (half of which is the docking navigation).

https://dailydevlinks.com/minimal-css-frameworks/
January 8, 2021 at 7:53:00 AM EST *
css frameworks
FILLER

How to make CSS Animations

QRCode

CSS Animations is an amazing and powerful tool to make your website stand out among the competition. Learn how to do it and improve your user experience.

https://www.imaginarycloud.com/blog/how-to-make-css-animations/
October 30, 2020 at 11:53:36 AM EDT *
css animation
FILLER

CSS Grid full-bleed layout tutorial · Josh W Comeau

QRCode

Back in the day, there was a gold-standard website layout that everyone strived to create, but that was notoriously difficult to get right…

I recently discovered an elegant solution to this problem using CSS Grid. In this post, we'll learn how it works!

https://joshwcomeau.com/css/full-bleed/
October 22, 2020 at 10:16:01 AM EDT *
css grid webdesign
FILLER

A Complete Guide to CSS Media Queries | CSS-Tricks

QRCode

There are lots of other things we can target beside viewport width. That might be screen resolution, device orientation, operating system preference, or even more among a whole bevy of things we can query and use to style content.

https://css-tricks.com/a-complete-guide-to-css-media-queries/
October 19, 2020 at 3:30:55 PM EDT *
webdesign css
FILLER

GitHub - xz/new.css: A classless CSS framework to write modern websites using only HTML.

QRCode

new.css

A classless CSS framework to write modern websites using only HTML. It weighs 4.8kb.

All it does is set some sensible defaults and styles your HTML to look reasonable. It's perfect for:

  • A dead-simple blog
  • Collecting your most used links
  • Making a simple "about me" site
  • Rendering markdown-generated HTML
https://github.com/xz/new.css
October 5, 2020 at 11:57:51 AM EDT *
css reset webdesign styleguide
FILLER

Things I Wish I’d Known About CSS | CSS For Designers

QRCode
  • img is inline by default
  • Difference between nth-child and nth-of-type
https://cssfordesigners.com/articles/things-i-wish-id-known-about-css
August 14, 2020 at 4:02:56 PM EDT *
css
FILLER
5 / 16
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