A simple CSS file to make it easier to layout a web page quickly at the start. It's meant to be removed once you have the basic layout done, but you could probably keep it if you like it.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
blockstart/public/index.html

367 lines
14 KiB

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Starting Template</title>
<link rel="stylesheet" href="/blockstart.css">
<style>
code, pre {
background-color: var(--value8);
}
pre {
padding-left: 0.5rem;
padding-right: 0.5rem;
border-radius: var(--border-radius);
font-size: 1.1em;
}
</style>
</head>
<body>
<block class="horizontal pad" style="border-bottom: 1px solid var(--value6); --spacing: space-around; width: unset;">
<div>blockstart.css</div>
<div class="horizontal" style="--spacing: end;">
<a href="#about">About</a> &nbsp;|&nbsp;
<a href="#docs">Docs</a> &nbsp;|&nbsp;
<a href="/demos/">Demos</a> &nbsp;|&nbsp;
<a href="/theory.html">Theory</a> &nbsp;|&nbsp;
<a href="/blockstart.css">Download</a>
</div>
</block>
<block class="solid center center-text sized" style="--value: 8; --h: 400px;">
<div class="no-flex">
<h1>The blockstart.css</h1>
<p>Quickly get your initial layout idea done with minimal CSS and HTML.</p>
</div>
</block>
<content class="pad">
<h1 id="#about">About blockstart.css</h1>
<p>The <a href="/blockstart.css">blockstart.css</a> file gives you a simple set of basic layout primitives to get started. It allows you to follow a process similar to painters:</p>
<ol>
<li>Organize the big "gross" structure without details in monochrome.</li>
<li>Develop a first statement with a meaningful structure and a simplified monochrome design.</li>
<li>Refine a second statement by filling in the structure with content and additional refinements for that content.</li>
<li>Complete a third statement with further refined details, fonts, and color schemes.</li>
</ol>
<p>In practical terms this means:</p>
<ol>
<li>Use <a href="/blockstart.css">blockstart.css</a> to get a "chunky" boxes and grids layout.</li>
<li>Replace the <a href="/blockstart.css">blockstart.css</a> with semantic HTML tags and your own CSS, adding first refinements.</li>
<li>Fill in your blocks with media so you have something to design around that's real, refining further.</li>
<li>Develop this last stage of the design with font choices, color, and other details that fit the content.</li>
</ol>
<p>The <a href="/blockstart.css">blockstart.css</a> file helps with this process by giving you the minimum necessary blocks to create the first statement. There is almost nothing in the CSS, making it easy to replace in later stages...if you want.</p>
<h2 id="docs">Blocks</h2>
<p>The <code>&lt;block&gt;</code> is the main structure. It's a block. When you put things in it, they stay in there. That's how a block should work:</p>
<block>
<p>I am inside a block.</p>
</block>
<h2>Debugging</h2>
<p>Not sure where the boxes are? Add <code>class="debug"</code> to the <code>block</code> (or <code>grid</code>) and it will put a red border around the outer box, then a blue border around the children:</p>
<block class="debug">
<p>I am inside a block, see it now?.</p>
</block>
<h2>Blocks Propagate</h2>
<p>The first children in a block become a blocks too. In the beginning that's usually what you want. This means you don't need to put blocks inside blocks unless you want to. You can remove this on an element with <code>class="no-flex"</code>:</p>
<block class="debug">
<top>
<p>Line 1</p>
<p>Line 2</p>
</top>
<bottom class="no-flex">
<p>No Flex Line 1</p>
<p>No Flex Line 2</p>
</bottom>
</block>
<p>In that example, the "No Flex" lines are spaced normally because the code has <code>class="no-flex"</code> on that block.</p>
<h2>Solid Blocks</h2>
<p>You can make a block solid with <code>class="solid"</code></p>
<block class="solid">
<p>I am inside a solid block.</p>
</block>
<p>Notice how it takes up the whole page? Notice how it is monochrome? That's all you need. You can change the "value" of a solid block with a variable <code>style="--value: 3"</code>:</p>
<block class="solid" style="--value: 3">
<p>I am inside a solid dark block.</p>
</block>
<p>We can't read that text so we need something called a "Value."</p>
<h2>Values</h2>
<p>What's a value? A value represents a simple number for the "light" and "dark" of something. Think of it as a measure of the amount of light produced. A value 9 object gives off a lot of light, so it's white. A value 0 object gives off no light, so it's black. You can do most initial designs with only 5 values, but <a href="/blockstart.css">blockstart.css</a> has 10 (0-9) to help with contrast. You can usually change the background with <code>--value: 0</code> and the text with <code>--text: 9</code> in most places.</p>
<p>We can fix that last block's contrast with value 9 text using <code>style="--text: 9;"</code>:</p>
<block class="solid" style="--value: 3; --text: 9;">
<p>I am inside a solid dark block too.</p>
</block>
<p>If we use <code>style="--value: 0; --text: 9;"</code> we can get a high contast dark block:</p>
<block class="solid" style="--value: 0; --text: 9;">
<p>I am inside a solid black block.</p>
</block>
<p>Values make it easier to solve contrast in your designs because you don't have to think about thousands of colors and their luminance levels. Just make the difference in value between your text (the subject) and background (the ground) to increase contrast. In the previous block the difference was 9 because background is value 0 and text is value 9.</p>
<h2>Shapes</h2>
<p>You always need some kind of rectangle shape to represent where a photo might go, and the <code>shape</code> tag handles that:</p>
<shape style="--w: 300px; --h: 300px;">
<h1>Image</h1>
</shape>
<p>You set the shape's size with <code>style="--w: 300px; --h: 300px;"</code>.</p>
<h2>Padding</h2>
<p>Just add <code>class="pad"</code> to give a simple 1rem padding to a block. Use the variable <code>style="--pad: 1rem"</code> to change its padding.</p>
<h2>Borders</h2>
<p>Things need borders and you can add a border with <code>class="border"</code>:</p>
<block class="center border">
<h3>This box has a border</h3>
</block>
<h2>Center</h2>
<p>Many times in the beginning you'll want to say something is centered, and you mean the whole thing, not just randomly the box but not its content. Add <code>class="center"</code> and it will be centered:</p>
<block class="center border">
<h2>This Block Is Center</h2>
<p>You say it's centered, it's centered.</p>
</block>
<p>Notice the text isn't centered, because many times you don't want centered text. On landing pages it seems that <b>everything</b> is centered, so you can add <code>center-text</code> to also center the text. You can place this on anything too, not just blocks:</p>
<block class="center center-text border">
<h2>This Text is Center Too</h2>
<p>Ok, now it's totally centered.</p>
</block>
<p>You can also add <code>class="center-self"</code> on
elements that you want to center but not really the contents, and when it's not explicitly a <code>block</code> tag but you want it centered.</p>
<block class="solid pad">
<demo class="pad solid border center-self" style="--value: 10;">
DEMO
</demo>
</block>
<h2>Patterns</h2>
<p>Sometimes you need a little indicator for a block to make it different for later changes. You can use three patterns of <code>stripes</code>, <code>lines</code>, and <code>dots</code>.</p>
<grid style="--rows: auto; --cols: 1fr 1fr 1fr; --gap: 1rem;">
<block class="solid center stripes border">
<h1>Solid</h1>
</block>
<block class="solid center dots border">
<h1>Dots</h1>
</block>
<block class="solid center lines border">
<h1>Lines</h1>
</block>
</grid>
<p>You can change the line/dot/stripe color with <code>--pat-val</code>, and combine it with the block background setting <code>--value</code>. For example, these are all white patterns on black blocks:</p>
<grid style="--rows: auto; --cols: 1fr 1fr 1fr; --gap: 1rem;">
<block class="solid center dots border"
style="--value: 0; --pat-val: 9; --text: 9;">
<h1>Dots</h1>
</block>
<block class="solid center lines border"
style="--value: 0; --pat-val: 9; --text: 9">
<h1>Lines</h1>
</block>
<block class="solid center stripes border"
style="--value: 0; --pat-val: 9; --text: 8">
<h1>Stripes</h1>
</grid>
<h2>Horizontal</h2>
<p>By default blocks are vertical, like a web page, because blocks being horizontal by default is stupid. You can make a block horizontal with <code>class="horizontal"</code>, and then make it vertical again with <code>class="vertical"</code>. Here's a side-by-side block using <code>horizontal</code>:</p>
<block class="border horizontal">
<left class="solid vertical">
<h3>I'm Left</h3>
<p>Everything is set to flex, 'cause
that's easier.</p>
</left>
<right class="vertical">
<h4>I'm Right</h4>
<p>That makes doing left and right oriented
content that actually contains what it holds
easier.
</p>
</right>
</block>
<h2>Spacer</h2>
<p>You can add a basic spacing between blocks with <code>&lt;hr&gt;</code> tags. The line is hidden.</p>
<h2>Grids</h2>
<p>
You can make a grid, and it'll actually be a grid, that
contains its contents. Amazing. Your boxes can also have
solid backgrounds or dots, stripes, and lines.
</p>
<p>You set the rows, columns, and gap with style variables <code>--rows</code>, <code>--columns</code>, and <code>--gap</code> like so:
<pre><code class="pad">&lt;grid style="--rows: auto; --cols: 1fr 1fr 1fr; --gap: 1rem;"&gt;</code></pre>
<p>Here is that grid setting using blocks inside for each of the patterns:</p>
<grid style="--rows: auto; --cols: 1fr 1fr 1fr; --gap: 1rem;">
<block class="border center">
<h1>Grids</h1>
</block>
<block class="solid center border">
<h1>Solid</h1>
</block>
<block class="solid center dots border">
<h1>Dots</h1>
</block>
<block class="solid center lines border">
<h1>Lines</h1>
</block>
<block class="solid center stripes border">
<h1>Stripes</h1>
</block>
<block class="solid center border"
style="--value: 0; --text: 9;">
<h1>Solid</h1>
</block>
<block class="solid center dots border"
style="--value: 0; --text: 9;">
<h1>Dots</h1>
</block>
<block class="solid center lines border"
style="--value: 0; --text: 9;">
<h1>Lines</h1>
</block>
<block class="solid center stripes border"
style="--value: 0; --text: 9;">
<h1>Stripes</h1>
</block>
</grid>
<h2>Stacked Layers</h2>
<p>Frequently you need to use multiple layers as in an image with text on top. You might not need this in the layout phase, but in the first statement it does come up. The <code>stack</code> tag will position all of it's children on top of each other in order, and you can set one as the top with <code>class="top"</code>.</p>
<p>In this demo I have a block with "I'm on Bottom" that I cover with another block that uses a stripes pattern. This gives the effect of putting the text behind bars. Remember that these stack in the reverse order you write them, unless you tag one with <code>class="top"</code>.
</p>
<stack class="center" style="width: 300px; height: 150px;">
<block class="solid center">
<h2>I'm on Bottom</h2>
</block>
<block class="stripes debug" style="--spacing: flex-end;">
<h1 class="no-flex">I'm on Top</h1>
</block>
</stack>
<p>I put <code>class="debug"</code> around the "I'm on Top" class so you can see where it gets placed. The "top" block has the lines and you can read the text clearly. The "I'm on Bottom" text is hiding behined these lines.
</p>
<h2>Content</h2>
<p>Many times you want one section to take up the whole page width, but then content under that to be padded. You can just manually set the width most of the time, or use the <code>content</code> tag. Add on the <code>class="pad"</code> to give it padding, or <code>class="sized"</code> to set its width or height.
</p>
<h2>Getting Started</h2>
<p>Once you download the <a href="/blockstart.css">blockstart.css</a> you need a web server. For people who use Node.js you can run the <a href="https://www.npmjs.com/package/http-server">http-server</a> package to get a simple one. Here's the commands that I use to get a project started:</p>
<pre>
<code>
mkdir myproject
cd myproject
npm init
# Answer all the questions
npm install http-server
mkdir public
npx http-server -d -c-1 public
</code>
</pre>
<p>Once you do that you can place the <a href="/blockstart.css">blockstart.css</a> in the <code>public/</code> directory and start putting your <code>.html</code> files in the same place. Here's a decen starter template:</p>
<pre>
<code>
&lt;!doctype html&gt;
&lt;html lang="en"&gt;
&lt;head&gt;
&lt;meta charset="utf-8"&gt;
&lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;
&lt;title&gt;Blockstart Template&lt;/title&gt;
&lt;link rel="stylesheet" href="/blockstart.css"&gt;
&lt;style&gt;
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;/body&gt;
&lt;/html&gt;
</code>
</pre>
<p>There's a lot you can add to an HTML page to make it work on different platforms, including all the icons ever invented by Apple, but this file gets you started when using the <a href="/blockstart.css">blockstart.css</a>.
</p>
</content>
</body>
</html>