Utilities: New Look and New Utility
I’m working on a new design for the Utilities and I’ve created a new utility. Learn more – read the post! Continue reading
I’m working on a new design for the Utilities and I’ve created a new utility. Learn more – read the post! Continue reading
This short tutorial will teach you how to create a rollover color change/fade effect for your text. An great example of this would be our site title. Here’s the code: #myFade { color: #000000; -moz-transition: color 0.3s ease; /* Firefox … Continue reading
Sometimes, you’re building that website that you know has just too much stuff for it to look good. A good example of this is our code generators page: http://scyberia.org/utilities/gen.php Without the effect it uses, the page would be way too … Continue reading
A short article on putting boxes around items and including shadows. If you’d like an example of what we’ll be making, it’s below: This is a box filled with text. If you roll over me, a shadow appears…cool! While it … Continue reading
Let’s say I have a webpage called: page.html and a CSS file for the webpage called: style.css How do I link them? With this line of code, placed in the <head> tags: <link rel=”stylesheet” href=”style.css” type=”text/css”> If the stylesheet … Continue reading