From 37062380ff138da428b986fab89be9e7b24d3530 Mon Sep 17 00:00:00 2001
From: Cory LaViska
- Shoelace is highly customizable through CSS variables. It doesn’t require Less, Sass, or any
- preprocessing at all. Just link to shoelace.css and add customizations directly
- to your stylesheet.
+ You can use Shoelace with just about every browser. The CDN version is great for
+ prototyping, but to take full advantage you should
+ build it from source.
<link rel="stylesheet" href="shoelace.css">
+
+ Here is the CSS you could be writing:
+
-<style>
- :root {
- --body-color: white;
- --body-bg-color: black;
- --state-primary: #09d;
+:root {
+ --info-color: white;
+ --info-bg: color(teal shade(25%));
+}
+
+.info {
+ color: var(--info-color);
+ background: var(--info-bg);
+
+ &.info-big {
+ font-size: 2rem;
}
-</style>
+}
+
+
+ + CSS has a really bright future, and you can use + most of its upcoming features today with Shoelace + cssnext. You no longer need + Less or Sass to do amazing things with CSS. +
Shoelace was created by @claviska for