frankstallone + css 130
A List Apart: Articles: A Dao of Web Design
9 minutes ago by frankstallone
What Zen was to the 70’s (most famously with motorcycle maintenance), the Tao Te Ching was to the 90’s. From Piglet and Pooh to Physics and back, many have sought sense in applying the Tao Te Ching to something (the Tao of Physics), or something to the Tao Te Ching (the Tao of Pooh). It can be a cheap trick, but lately it has struck me that there is more than a little to be understood about web design by looking through the prism of the Tao.
css
design
web
webdesign
9 minutes ago by frankstallone
HTML9 Responsive Boilerstrap JS
15 days ago by frankstallone
H9RBS.js (v0.0001) is a flexible, dependency-free, lightweight, device-agnostic, modular, baked-in, component framework MVC library shoelacestrap to help you kickstart your responsive CSS-based app architecture backbone kitchensink tweetybirds.
css
framework
html5
twitter
15 days ago by frankstallone
Screenqueri.es | Pixel Perfect Responsive Design Testing Tool
28 days ago by frankstallone
Screenqueri.es is a Pixel Perfect Tool to test your Responsive Design / Media Queries. Select from Pre-defined Screen Resolutions OR Drag Screen Handles To Go With Your Custom Screen Resolutions.
css
responsive
testing
tools
webdesign
28 days ago by frankstallone
Drop-Down to Accordion ~ Degradable
5 weeks ago by frankstallone
CSS3 Drop-Down To Accordion Responsive Menu by Ian Hansson @teapoted
accordion
css
css3
dropdown
5 weeks ago by frankstallone
Best Practices for Speeding Up Your Web Site
5 weeks ago by frankstallone
The problem caused by scripts is that they block parallel downloads. The HTTP/1.1 specification suggests that browsers download no more than two components in parallel per hostname. If you serve your images from multiple hostnames, you can get more than two downloads to occur in parallel. While a script is downloading, however, the browser won't start any other downloads, even on different hostnames.
css
html
javascript
optimization
performance
5 weeks ago by frankstallone
Animated Content Tabs with CSS3 | Codrops
6 weeks ago by frankstallone
Content tabs are a very common and familiar element in web design, and often their turn out to be pretty useful. So, in this tutorial we are going to implement some simple CSS3 content tabs using radio buttons together with the :checked pseudo-class and sibling combinators.
animation
css
css3
jquery
6 weeks ago by frankstallone
Roots WordPress Theme | Rapidly create sites with HTML5 Boilerplate & Bootstrap from Twitter
10 weeks ago by frankstallone
Roots is a starting WordPress theme based on HTML5 Boilerplate & Bootstrap from Twitter.
css
html5
theme
wordpress
10 weeks ago by frankstallone
Don’t use IDs in CSS selectors? ❧ Oli.jp (@boblet)
10 weeks ago by frankstallone
Recently I came across the post by Matt Wilcox called CSS Lint is harmful, ranting about the useful free tool CSS Lint. The “Don’t use IDs in selectors” suggestion seems to have offended Matt the most, but I was surprised that many commenters also mentioned this as being a reason to avoid CSS Lint. This surprised me because smart people have been saying prefer classes to IDs for a while now. The article was light on reasons why this suggestion might be bad, but it boils down to:
class
css
html
performance
id
10 weeks ago by frankstallone
Rogie's Blog
february 2012 by frankstallone
I find myself in situations where I’m using CSS generated content to add a glyph to a tag using :after to add more meaning, say a check mark for a list of features, or an arrow to a next link. Most times, I’ll find a glyph using Jesse Gardner’s fantastic SymbolAssist or by simply pressing Command-Option-T ⌘⌥T on my Mac to pull up the characters palette.
css
character
entities
symbols
:after
february 2012 by frankstallone
Pure CSS carousels
february 2012 by frankstallone
Important! No javascript has been harmed in these demos. Nowhere on this page. Nada. Zilch.
css
css3
slider
carousel
february 2012 by frankstallone
HTML5 Please - Use the new and shiny responsibly
february 2012 by frankstallone
Look up HTML5, CSS3, etc features, know if they are ready for use, and if so find out how you should use them – with polyfills, fallbacks or as they are. tell me more
css
html5
reference
february 2012 by frankstallone
Bootstrap, from Twitter
january 2012 by frankstallone
Bootstrap is a toolkit from Twitter designed to kickstart development of webapps and sites.
It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more.
css
design
framework
html
twitter
It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more.
january 2012 by frankstallone
View.js — A simple, lightweight, jQuery photo viewer for the web
january 2012 by frankstallone
A simple, lightweight, jQuery photo viewer for the web
css
image
jquery
photo
january 2012 by frankstallone
How to Use Content Column Classes - Genesis Framework
january 2012 by frankstallone
In Genesis we have added the ability to create columns (column classes) within the content area. Below you find instructions on how to use content column classes.
css
january 2012 by frankstallone
Responsive Design, Responsively Illustrated
january 2012 by frankstallone
HTML/CSS + media queries (no images, no JS*) this is a simple interactive experiment with responsive design techniques.
css
design
mobile
responsive
january 2012 by frankstallone
Minimus: The OS X JavaScript and CSS Minifier
december 2011 by frankstallone
Minimus is a GUI frontend for Yahoo’s YUI Compressor. Instead of using inconvenient and slow websites to compress your JavaScript and CSS, you can do it right on your Mac.
css
javascript
minify
osx
december 2011 by frankstallone
When can I use... Support tables for HTML5, CSS3, etc
november 2011 by frankstallone
Compatibility tables for support of HTML5, CSS3, SVG and more in desktop and mobile browsers.
browser
browsers
css
html5
support
november 2011 by frankstallone
CSS current work & how to participate
november 2011 by frankstallone
CSS specifications
This page contains a list of all completed specifications and drafts by the CSS WG (formerly “CSS & FP WG”). If you want to follow the development of CSS3, this is the place to start. You have ideas? Contributions? See “If you want to help” on this page.
css
css3
reference
standards
w3c
This page contains a list of all completed specifications and drafts by the CSS WG (formerly “CSS & FP WG”). If you want to follow the development of CSS3, this is the place to start. You have ideas? Contributions? See “If you want to help” on this page.
november 2011 by frankstallone
Animate.css - a bunch of plug-and-play CSS animations
october 2011 by frankstallone
animate.css is a bunch of cool, fun, and cross-browser animations for you to use in your projects. Great for emphasis, home pages, sliders, and general just-add-water-awesomeness.
css3
css
animation
october 2011 by frankstallone
Create a centred horizontal navigation — CSS Wizardry—CSS, Web Standards, Typography, and Grids by Harry Roberts
october 2011 by frankstallone
Centring block level elements is easy, just define a width and set margin:0 auto;, but what if you don’t know that fixed width? You could use text-align:center;, but that won’t work on 100%-width block-level elements either… that’ll only work on text-level elements.
css
html
webdesign
menu
dropdown
october 2011 by frankstallone
Delay loading your print CSS / Stoyan's phpied.com
october 2011 by frankstallone
The first one is used to render the page on screen, the other one is used for printing the page and print previewing it. Good.
The thing is, when it comes to performance, the browser won't render any part of the page, until all stylesheets are downloaded (fiddled with here). That includes, unfortunately, stylesheets not designed for the currently rendered media. In other words, the browser won't display your page, until the print stylesheet is also downloaded, although it's not used at all for displaying the page. That sucks and should really be addressed in future browser versions.
css
javascript
print
The thing is, when it comes to performance, the browser won't render any part of the page, until all stylesheets are downloaded (fiddled with here). That includes, unfortunately, stylesheets not designed for the currently rendered media. In other words, the browser won't display your page, until the print stylesheet is also downloaded, although it's not used at all for displaying the page. That sucks and should really be addressed in future browser versions.
october 2011 by frankstallone
Beautiful Horizontally Centered Menus/Tabs/List. No CSS hacks. Full cross-browser.
september 2011 by frankstallone
A lot of people want centered menus on their website but for the CSS novice this task seems impossible. If you do a search online you will find a few centering methods but most of these rely on CSS hacks, JavaScript or non-standard CSS rules that are not supported by all browsers (display:inline-block; is an example). In this post I'm going to show you my secret method of achieving centered tabs that does not use any CSS hacks and will work in all the common web browsers. It is also compatible with my perfect liquid layouts. Let's start with a basic example then I'll explain how it works.
css
design
menu
webdesign
september 2011 by frankstallone
OMG!!! Rainbow Dividers in CSS3!!!
september 2011 by frankstallone
No longer must your rainbow dividers be images slowing down your computer! Make them hardware accelerated!
css
css3
fun
september 2011 by frankstallone
In defense of CSS hacks — introducing “safe CSS hacks” · Mathias Bynens
september 2011 by frankstallone
In defense of CSS hacks — introducing “safe CSS hacks”
ie
css
conditional
comments
hacks
september 2011 by frankstallone
Normalize.css: Make browsers render all elements more consistently.
august 2011 by frankstallone
Normalize.css is a customisable CSS file that makes browsers render all elements more consistently and in line with modern standards. We researched the differences between default browser styles in order to precisely target only the styles that need normalizing.
css
reset
august 2011 by frankstallone
Golden Grid System
august 2011 by frankstallone
Golden Grid System (GGS) splits the screen into 18 even columns. The leftmost and rightmost columns are used as the outer margins of the grid, which leaves 16 columns for use in design.
css
design
framework
grid
webdesign
august 2011 by frankstallone
Rethinking CSS Grids| Mark Boulton
august 2011 by frankstallone
Off the back of this article in Net Magazine last week, and the subsequent few tweets popping up in my stream, I’ve finally managed (in no small part from the help of Nathan and Alex) to pull together some of my thoughts and concerns regarding CSS grids and how they could (or, maybe, should) be created.
css
css3
grid
august 2011 by frankstallone
CodeMyConcept: the best PSD to HTML service on the planet!
august 2011 by frankstallone
Our PSD to HTML coding and implementations support all the latest and most popular browsers: Internet Explorer 7+, Firefox, Opera, Chrome and Safari.
webdesign
html
design
css
source
psd
august 2011 by frankstallone
Media Queries
july 2011 by frankstallone
a collection of sites using media queries
design
css
webdesign
july 2011 by frankstallone
Fractal | Email HTML/CSS Validation
july 2011 by frankstallone
See exactly which lines of code are not supported in over 24 email clients.
Email designers that are tired of trawling through check lists, this is for you.
css
email
html
validator
Email designers that are tired of trawling through check lists, this is for you.
july 2011 by frankstallone
Sprite Cow - Generate CSS for sprite sheets
june 2011 by frankstallone
Sprite Cow helps you get the background-position, width and height of sprites within a spritesheet as a nice bit of copyable css.
css
images
tools
june 2011 by frankstallone
GridCalc - Grid calculator and generator | Problem AB
june 2011 by frankstallone
GridCalc is a easy to use grid calculator. Just enter the desired width of your page and an aproximate range for your column and gutter width and the calculator will give you all the possible combinations within the limits you entered. You get a nice visual representation of the results, click preview on a result and you get a better presentation of how the grid can be used. When you have decided which grid configuration you want to use you can download the configuration as a css file to use in your project.
calculator
css
generator
grid
june 2011 by frankstallone
Cross Browser CSS Image Replacement on Inputs // sanchothefat.com
may 2011 by frankstallone
Here’s a quick solution to the problem of using regular CSS image replacement on inputs. The text-indent method fails in IE so we need a slightly different approach.
css
ir
ie7
ie6
inputs
may 2011 by frankstallone
Lettering.js - A jQuery plugin for radical web typography.
may 2011 by frankstallone
A jQuery plugin for radical web typography
css
javascript
jquery
typography
webdesign
may 2011 by frankstallone
Web Font Specimen
may 2011 by frankstallone
Real web type in real web context
Web Font Specimen is a handy, free resource web designers and type designers can use to see how typefaces will look on the web. Debuted in a special issue of A List Apart, Web Font Specimen is now in its second iteration.
css
fonts
tools
typography
webdesign
Web Font Specimen is a handy, free resource web designers and type designers can use to see how typefaces will look on the web. Debuted in a special issue of A List Apart, Web Font Specimen is now in its second iteration.
may 2011 by frankstallone
320 and up
april 2011 by frankstallone
A ‘tiny screen first’ boilerplate extension*
‘320 and Up’ prevents mobile devices from downloading desktop assets by using a tiny screen’s stylesheet as its starting point. Try this page at different window sizes and on different devices to see it in action.
css
css3
mobile
responsive
boilerplate
‘320 and Up’ prevents mobile devices from downloading desktop assets by using a tiny screen’s stylesheet as its starting point. Try this page at different window sizes and on different devices to see it in action.
april 2011 by frankstallone
Whatever:hover
march 2011 by frankstallone
Most modern browsers support the :hover selector for any html element. This is cool, because it enables you to, for instance, apply a mouseover effect to table rows <tr> using only CSS. IE however, has an erratic support for :hover at best, depending on the particular version your visitor is using.
ie6
ie
css
march 2011 by frankstallone
Code Standards | Isobar
march 2011 by frankstallone
This document outlines our de-facto code standards. The primary motivation is two- fold: 1) code consistency and 2) best practices. By maintaining consistency in coding styles and conventions, we can ease the burden of legacy code maintenance, and mitigate risk of breakage in the future. By adhering to best practices, we ensure optimized page loading, performance and maintainable code.
css
html
html5
standards
march 2011 by frankstallone
The Great Typekit Table – Sleepover
march 2011 by frankstallone
Finding a good Typekit font for long blocks of text is hard, but Sleepover has made it a little easier for ya. We’ve sifted through the Typekit library and pared it down to the following list according to two simple rules: first, the font had to have lowercase, uppercase, bold, italic, and bold italic; second, the font couldn’t be handwriting, script, or monospace. If you think we’ve missed something, or made any mistakes, send a note to contact@sleepoversf.com. A special thank you goes out to John Holdun and Bruce Spang for awesome jQuery help. Happy typesetting!
css
design
fonts
typography
march 2011 by frankstallone
LESS.app For Mac OS X
february 2011 by frankstallone
{Less} extends CSS with variables, nested rules, operators and more. If you're still building websites without it, you're an idiot. This app makes it dead simple to use {Less} by automatically compiling *.less files into standard CSS.
css
mac
osx
february 2011 by frankstallone
Baseline - a designer framework by ProjetUrbain.com
february 2011 by frankstallone
Built with typographic standards in mind, Baseline makes it easy to develop a website with a pleasing grid and good typography. Baseline starts with several files to reset the browser’s default behavior, build a basic typographic layout — including style for HTML forms and new HTML 5 elements — and build a simple grid system. Baseline was born to be a quick way to prototype a website and grew up to become a full typographic framework for the web using “real” baseline grid as its foundation.
css
grid
typography
webdesign
february 2011 by frankstallone
Internet Explorer UA Style Sheets
february 2011 by frankstallone
Internet Explorer User Agent Style Sheets
A UA Style Sheet is a simple set of css styles that each web browser uses before any other css styles are applied.
This chart lists and compares the different default style sheets used to render HTML in the four major versions of Internet Explorer; IE6, IE7, IE8, and IE9 Platform Preview.
You can download each of these UA style sheets by using the links at the top of this chart.
browser
css
ie
ie6
webdesign
A UA Style Sheet is a simple set of css styles that each web browser uses before any other css styles are applied.
This chart lists and compares the different default style sheets used to render HTML in the four major versions of Internet Explorer; IE6, IE7, IE8, and IE9 Platform Preview.
You can download each of these UA style sheets by using the links at the top of this chart.
february 2011 by frankstallone
Best Practices for Speeding Up Your Web Site
february 2011 by frankstallone
The Exceptional Performance team has identified a number of best practices for making web pages fast. The list includes 35 best practices divided into 7 categories.
performance
css
server
cookie
javascript
images
mobile
february 2011 by frankstallone
Better grids: Lessons learned from Design for Developers - GIANT ROBOTS SMASHING INTO OTHER GIANT ROBOTS
february 2011 by frankstallone
We asked all students to use the 12 column, 960 grid when designing their pages in order to focus their work. However, it was very common for students to build unnecessarily complex grids instead of taking advantage of the simplicity that the 960 grid offers. Let’s look at four examples of problematic grids, along with strategies for improving them. As you’ll see, the solutions are straightforward: make it simpler!
design
css
grid
february 2011 by frankstallone
Initializr - Start your HTML5 project in 15 seconds!
february 2011 by frankstallone
Initializr is a simple tool to help you getting started with an HTML5 project. It is built on HTML5 Boilerplate, a powerful HTML5 template created by Paul Irish and Divya Manian. Initializr will generate for you a clean customizable template based on Boilerplate with just what you need to start.
css
html5
javascript
template
february 2011 by frankstallone
CSS3 Please! The Cross-Browser CSS3 Rule Generator
february 2011 by frankstallone
/* ------------------------------------------------------------- CSS3, Please! The Cross-Browser CSS3 Rule Generator =================================================== You can edit the underlined values in this css file, but don't worry about making sure the corresponding values match, that's all done automagically for you. Whenever you want, you can copy the whole or part of this page and paste it into your own stylesheet. ------------------------------------------------------------- */
css
generator
tools
webdesign
february 2011 by frankstallone
W3Fools – A W3Schools Intervention
february 2011 by frankstallone
We are passionate about the web, learning, and craftsmanship. We want you, as web designers and developers, to be successful in your careers. We feel, though, that W3Schools is harming the community with inaccurate information. Like any other authoritative educational resource, W3Schools should both hold itself to, and be held to, the highest standards.
We hope we can illuminate why W3Schools is a troublesome resource, why their faulty information is a detriment to the web, and what you (and they) can do about it.
css
html
html5
javascript
We hope we can illuminate why W3Schools is a troublesome resource, why their faulty information is a detriment to the web, and what you (and they) can do about it.
february 2011 by frankstallone
Mothereffing HSL
february 2011 by frankstallone
HSL(a) is the jam. It's a piece of cake to do mentally, too. Hue is like this: ROY G BIV is 0 to 300, and then back to red again at 360. Saturation % is from grey to intense color; lightness % and alpha 0-1 are easy 'nuff. read more on hsl awesomeness.
color
css
design
hsl
february 2011 by frankstallone
WordPress Default CSS Styles | Digging into WordPress
february 2011 by frankstallone
Fortunately, most (if not all) of your WP CSS work happens at the “theme” or “post” level. And when you do need to style the Admin, it’s usually easiest to just do it en bloc via plugin. You can also do it the old-fashioned way.
css
wordpress
february 2011 by frankstallone
Adactio: Journal—A responsive mind
february 2011 by frankstallone
There has been a lot of discussion on that third part—including a superb presentation by Bryan Rieger—but there has been less emphasis on those first two parts. Anyone hoping to take an existing fixed-width rigid design and adapt it for smaller screen widths using media queries is going to be disappointed and frustrated.
css
design
responsive
mobile
february 2011 by frankstallone
The best responsive web design examples and resources | Mayfield Digital Blog
february 2011 by frankstallone
This week’s extended round up takes a look at some superb examples of responsive web design, as well as the best resources to find out more about this new way of designing for a flexible internet experience.
css
design
web
webdesign
responsive
february 2011 by frankstallone
960px grid templates — Robbie Manson
february 2011 by frankstallone
I’ve created a selection of 960 pixel-wide uniform grid templates ranging from 3-columns to 16-columns, for both Adobe Photoshop and Fireworks
grid
css
photoshop
fireworks
february 2011 by frankstallone
The 1140px CSS Grid System/Framework · Fluid down to mobile
december 2010 by frankstallone
A 1140px wide, 12 column grid. Fluid all the way down to a mobile version.
grid
css
fluid
1140
december 2010 by frankstallone
A Comprehensive Guide to CSS Resets
december 2010 by frankstallone
This guide examines the infinite-like variety of CSS resets created by web developers and designers across the world.
css
tips
december 2010 by frankstallone
ontwik | Lectures, Screencasts and conferences for real web developers & designers
december 2010 by frankstallone
Lectures, Screencasts and conferences for real web developers & designers.
conference
css
design
html
december 2010 by frankstallone
CSS Vocabulary | Nimbupani Designs
november 2010 by frankstallone
I realised quite late that to say something meaningful about CSS, I would have to know exactly what the terms used mean. Often, I have asked for help in forums, and have got stuck wondering how exactly to describe my problem. So I thought it would be a good idea to describe all the common terms of CSS.
Bookmark this page, if you are prone to panic attacks while racing a deadline and are likely to have issues with your CSS at that time.
cheatsheet
css
reference
Bookmark this page, if you are prone to panic attacks while racing a deadline and are likely to have issues with your CSS at that time.
november 2010 by frankstallone
SonSpring | Formalize CSS
november 2010 by frankstallone
By far, one of the most frustrating parts of dealing with browser inconsistencies has got to be forms. There are two distinctively differing schools of thought regarding (not) styling form elements. For the longest time, we’ve had people on both sides of the proverbial fence, neither group being particularly pragmatic.
form
css
html
ui
november 2010 by frankstallone
A List Apart: Articles: Taking Advantage of HTML5 and CSS3 with Modernizr
november 2010 by frankstallone
Ten years ago, only the most cutting-edge web designers used CSS for layouts and styling. Browser support for CSS layouts was slim and buggy, so these people advocated for web standards adherence, while creating hacks that made CSS layouts work in all browsers. One hack that became widely used was browser sniffing: Detecting which browser and version the user had by looking at the navigator.userAgent property in JavaScript. Browser sniffing allowed for quick and easy code forking, allowing developers to target different browsers with different instructions.
alistapart
css
html5
november 2010 by frankstallone
HTML5 Reset Stylesheet | HTML5 Doctor
november 2010 by frankstallone
We’ve had a number of people ask about templates, boilerplates, and styling for HTML 5. Last week, Remy introduced some basic boilerplates for HTML 5, so to keep the momentum going, I’ve modified Eric Meyer’s CSS reset for you to use in your HTML 5 projects.
css
html5
november 2010 by frankstallone
related tags
:after ⊕ abookapart ⊕ accessibility ⊕ accordion ⊕ alistapart ⊕ animation ⊕ awesome ⊕ backgrounds ⊕ boilerplate ⊕ bookmarklet ⊕ browser ⊕ browsers ⊕ calculator ⊕ carousel ⊕ character ⊕ cheatsheet ⊕ checklist ⊕ class ⊕ clearfix ⊕ cms ⊕ code ⊕ coding ⊕ color ⊕ comments ⊕ conditional ⊕ conference ⊕ cookie ⊕ css ⊖ css3 ⊕ design ⊕ dropdown ⊕ email ⊕ entities ⊕ espresso ⊕ file ⊕ firefox ⊕ fireworks ⊕ fluid ⊕ font ⊕ fonts ⊕ form ⊕ framework ⊕ fun ⊕ generator ⊕ gradient ⊕ grid ⊕ guide ⊕ hacks ⊕ hsl ⊕ html ⊕ html5 ⊕ humor ⊕ icon ⊕ icons ⊕ id ⊕ ie ⊕ ie6 ⊕ ie7 ⊕ image ⊕ images ⊕ inputs ⊕ ir ⊕ javascript ⊕ jquery ⊕ js ⊕ mac ⊕ markup ⊕ menu ⊕ microsoft ⊕ minify ⊕ minimal ⊕ mobile ⊕ obfuscation ⊕ opera ⊕ optimization ⊕ osx ⊕ paths ⊕ pc ⊕ performance ⊕ photo ⊕ photoshop ⊕ php ⊕ pngfix ⊕ presentation ⊕ print ⊕ programming ⊕ prototype ⊕ psd ⊕ reference ⊕ reset ⊕ resources ⊕ responsive ⊕ safari ⊕ sass ⊕ scale ⊕ security ⊕ semantic ⊕ semantics ⊕ server ⊕ slider ⊕ slides ⊕ slideshow ⊕ snippets ⊕ software ⊕ source ⊕ spam ⊕ stacks ⊕ standards ⊕ style ⊕ support ⊕ symbols ⊕ template ⊕ testing ⊕ textarea ⊕ theme ⊕ tips ⊕ tool ⊕ tools ⊕ tricks ⊕ tutorial ⊕ twitter ⊕ typography ⊕ ui ⊕ usability ⊕ validator ⊕ w3c ⊕ web ⊕ webdesign ⊕ whitespace ⊕ wireframe ⊕ wordpress ⊕ xhtml ⊕ z-index ⊕ zen ⊕ zencoding ⊕Copy this bookmark: