aboutsummaryrefslogtreecommitdiff
path: root/build/css-variables/index.html
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-06-08 13:43:37 -0400
committerBradley Taunt <bt@btxx.org>2024-06-08 13:43:37 -0400
commit16d28628aca9b2d356de31c319f5e7bc0f5b2b02 (patch)
tree11947abb71e38cbe75116871694a44c33d257763 /build/css-variables/index.html
parentdcfb172704f3afb68a30425029ec834be2883274 (diff)
Remove incorrectly generated files, fix up markdown articles
Diffstat (limited to 'build/css-variables/index.html')
-rw-r--r--build/css-variables/index.html16
1 files changed, 2 insertions, 14 deletions
diff --git a/build/css-variables/index.html b/build/css-variables/index.html
index b470633..2e33d1d 100644
--- a/build/css-variables/index.html
+++ b/build/css-variables/index.html
@@ -3,11 +3,12 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="color-scheme" content="dark light">
<link rel="icon" href="data:,">
<title>CSS Variables</title>
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
<link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
-<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style>
+<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}blockquote{background:rgba(0,0,0,0.1);border-left:4px solid;padding-left:5px;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style>
</head>
<nav>
@@ -16,27 +17,18 @@
<main>
<h1 id="css-variables">CSS Variables</h1>
-
<p>2018-03-24</p>
-
<p>The CSS language is becoming even more awesome and powerful everyday. In this quick article I&#8217;d like to focus specifically on the &#8220;new&#8221; CSS variable function that you can start using in your projects <em>right now</em>.</p>
-
<h3 id="getting-started-is-easy">Getting started is easy</h3>
-
<p>Let&#8217;s just jump right in - this is how you create variables in vanilla CSS:</p>
-
<pre><code>:root {
--base-color: #e0e0e0;
--text-color: #111;
}
</code></pre>
-
<p>We are using the <code>:root</code> selector at the very top of our CSS file in order to call these variables into any elements in the rest of our document. This is normally the safest way to include variables.</p>
-
<p>As for the variables themselves, you declare that they are variables using the <code>--</code> tags, followed by the variable&#8217;s name and it&#8217;s property. Pretty simple stuff, right?</p>
-
<p>Now let&#8217;s use those variables:</p>
-
<pre><code>.header {
border: 1px solid var(--base-color);
}
@@ -46,13 +38,9 @@
color: var(--text-color);
}
</code></pre>
-
<p>That&#8217;s it! It&#8217;s also good to know that CSS variables have pretty decent <a href="https://caniuse.com/#feat=css-variables">browser support</a> (who likes IE11 anyway).</p>
-
<h3 id="why-not-just-use-a-preprocessor">Why not just use a preprocessor?</h3>
-
<p>I&#8217;m a pretty big fan of Sass and Stylus, but sometimes it&#8217;s refreshing to just use vanilla CSS for certain projects. Most preprocessors have had the ability to use variables and mixins for a while, but I prefer to avoid build scripts when not absolutely necessary.</p>
-
<p>Get out there and have fun with some variables!</p>
<footer role="contentinfo">
<h2>Menu Navigation</h2>