From 37062380ff138da428b986fab89be9e7b24d3530 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Fri, 18 Aug 2017 13:54:43 -0400 Subject: [PATCH] Update homepage --- index.html | 35 +++++++++++++++++++++++++---------- 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/index.html b/index.html index e4545134..7263506b 100644 --- a/index.html +++ b/index.html @@ -29,20 +29,35 @@

- 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