Free things that we’ve created for you!

Free Notebook Photos

Several months ago, I ran into a Kickstarter page for Baron Fig notebooks. I was immediately struck by the aesthetic and simplicity that the notebook promised. Although I foolishly didn’t back Baron Fig at the time, I was delighted to see they recently started shipping.

Fast forward to today, when I finally received a few of these notebooks in the mail. The build quality and paper are top-notch, and provide a great writing experience. I couldn’t help but take a few photos of these beautiful notebooks.

Feel free to use these photos on any of your projects, commercial, personal or otherwise. They could make great Featured Images for your WordPress posts and pages, which is hopefully powered by an Array theme. If not, well, you should fix that immediately.

Getting Down and Dirty With CSS Selectors

Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation semantics (the look and formatting) of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can also be applied to any kind of XML document, including plain XML, SVG and XUL.

CSS is designed primarily to enable the separation of document content from document presentation.

CSS is designed primarily to enable the separation of document content (written in HTML or a similar markup language) from document presentation, including elements such as the layout, colors, and fonts. This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, enable multiple pages to share formatting, and reduce complexity and repetition in the structural content (such as by allowing for tableless web design).

.post code {
	background: #90979F;
	color: #fff;
	padding: 40px;
}

Lire la suite