Posts Tagged ‘css’

19
May
TRE
Author:
Chocksy
0

I just watched a video from nettuts where they show the new Google Font Directory and how easy it is to use it. I just had to share this with you guys.
Here is the video

And the links to the font directory: Google Font Directory and a tutorial on getting started: tutorial

09
Mar
TUT
Author:
Chocksy
2
Sexy CSS+JS Form

I was working on our new open source project that i think you will like and I was working on the registration page. This is what I got in the end and i will walk you trough the process with me. This new tutorial is about styling the forms of your website, I find it very good looking and very simple to implement. We will use simple CSS and some [...]

01
Oct
TUT
Author:
Chocksy
0
Play with CSS3

If you saw our “ImageRoll” page and you used Firefox, Chrome or Safari then you saw the images being rotated in different angles well the way i did that is by using CSS3. I guess you already figured that out from the title. :)

CSS3 implements a lot of new features that can make your life easier of course you will not be able to use them quite yet. IE is not supporting like more than 90% of them so it’s useless if you want to make this for a client. The ones that we used on our blog are: box-shadow, border-radius and text-shadow. [...]

23
Sep
TUT
Author:
Chocksy
4
Write Better CSS

When writing your CSS, it is possible to write neater, more readable code by making use of CSS shortcuts. A shortcut is a feature of CSS that allows the developer to specify a number of related properties on a single line rather than specify them all separately. Lets look at the following example:

.header {
padding-top:5px;
padding-right:10px;
padding-bottom:5px;
[...]