all posts

greatest youtube video ever Posted by admin at 5:30PM Feb 14, 2010 blog| 0 comments


^ Amazing video. It's a must watch.
css: Rounded corners Posted by admin at 9:59AM Feb 14, 2010 tutorials| 0 comments
Rounded corners require CSS3.

An example of the syntax would be:


-webkit-border-top-right-radius:10px;

-webkit-border-bottom-right-radius: 10px;

-webkit-border-bottom-left-radius: 10px;

-moz-border-radius-bottomleft: 10px;

-moz-border-radius-bottomright: 10px;

-moz-border-radius-topright:10px;

The example above gives the object it's assigned to rounded corners (with a 10 pixel radius) on all corners but the top left.



The code -webkit-border-top-right-radius:10px; makes the top right corner have a 10 pixel radius, but ONLY in browsers that use the webkit engine (Safari, Google Chrome, and others).

The code -moz-border-radius-topright:10px; makes the top right corner have a 10 pixel radius, but ONLY in Mozilla browsers (i.e. Firefox).



To receive the best results, use both syntaxes, in order to help compatibility issues. Unfortunately, Mircrosoft's Internet Explorer, a widely used browser, does not support this feature.
css: Drop Shadows Posted by admin at 7:08AM Feb 07, 2010 tutorials| 0 comments
In CSS3 the syntax for drop shadows is

-moz-box-shadow: 0px 0px 10px black;

-webkit-box-shadow: 0px 0px 10px black;

box-shadow: 0px 0px 10px black;


The first two values (in the code above they would be 0px and 0px) determine the X-offset and Y-offset. The third value (in this case 10px) determines the blur radius for the shadow. Last, but not least, the last value determines the color of the shadow.



Keep in mind that the syntax for drop shadows and the syntax for text-shadows are exactly the same. Here's an example of a text-shadow.text-shadow: 2px 1px 5px #333;
Again, the first two values determine the X and Y offsets, the third value determines the blur radius and the last value determines the color of the shadow.
A rite of passage Posted by admin at 10:05PM Feb 05, 2010 blog| 0 comments




After watching this video, i had a hard time deciding weather the song was referenced to the illuminati or the free masons. What do you think?
Portfolio page loading time shortened Posted by admin at 6:14PM Feb 03, 2010 news feed| 0 comments
I fixed the loading time issues on the portfolio page and plan to have all my pieces up in about a week.
Copyright © Ittai Svidler