aboutsummaryrefslogtreecommitdiff
path: root/build/css-variables
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-07-02 14:22:21 -0400
committerBradley Taunt <bt@btxx.org>2024-07-02 14:22:21 -0400
commit3f6a9546ec13063d0d5bdf21d30a93d3e8aa6050 (patch)
tree947985c4eda1bceb1910bc01739c32fd0baad181 /build/css-variables
parent14074019d62d98885c4c764401a9e7e1fd129f79 (diff)
Rebuild changes based off latest barfHEADmaster
Diffstat (limited to 'build/css-variables')
-rw-r--r--build/css-variables/index.html66
1 files changed, 66 insertions, 0 deletions
diff --git a/build/css-variables/index.html b/build/css-variables/index.html
new file mode 100644
index 0000000..aa58fc6
--- /dev/null
+++ b/build/css-variables/index.html
@@ -0,0 +1,66 @@
+<!doctype html>
+<html lang="en">
+<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;}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>
+ <a href="#menu">Menu &darr;</a>
+</nav>
+
+<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);
+}
+
+.main-container {
+ background-color: var(--base-color);
+ 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>
+ <ul id="menu">
+ <li><a href="/">Home</a></li>
+ <li><a href="/projects">Projects</a></li>
+ <li><a href="/uses">Uses</a></li>
+ <li><a href="/wiki">Wiki</a></li>
+ <li><a href="/resume">Resume</a></li>
+ <li><a href="/colophon">Colophon</a></li>
+ <li><a href="/now">Now</a></li>
+ <li><a href="/donate">Donate</a></li>
+ <li><a href="/atom.xml">RSS</a></li>
+ <li><a href="#top">&uarr; Top of the page</a></li>
+ </ul>
+ <small>
+ Built with <a href="https://barf.btxx.org">barf</a>. <br>
+ Feeds: <a href="/atom.xml">Atom</a> & <a href="/rss.xml">RSS</a><br>
+ Maintained with ♥ for the web. <br>
+ Proud supporter of <a href="https://usefathom.com/ref/DKHJVX">Fathom</a> &amp; <a href="https://nextdns.io/?from=74d3p3h8">NextDNS</a>. <br>
+ The content for this site is <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.<br> The <a href="https://git.sr.ht/~bt/bt.ht">code for this site</a> is <a href="https://git.sr.ht/~bt/bt.ht/tree/master/item/LICENSE">MIT</a>.
+ </small>
+</footer> \ No newline at end of file