SKYR0SE DOT COM

welcome

Welcome to Sasha's gfx corner Skyrose, here to provide quality resources since May 2014; take a look, read the Terms, grab whatever you like and enjoy. <3

updates

June 18, 2024
♥ v28 layout
♥ 4 textures
♥ 4 gradients
♥ 12 colors

January 02, 2024
♥ v27 layout
♥ 8 backgrounds/patterns
♥ 8 textures
♥ 6 gradients
♥ 2 banners
♥ 4 colors
♥ misc. tuts changes

November 11, 2023
♥ v26 layout
♥ 40 colors
♥ colors revamp

September 25, 2023
♥ v25 layout

April 14, 2020
♥ v24 layout
♥ 12 textures
♥ 4 gradients
♥ 2 banners
♥ 4 colors

October 01, 2018
♥ v23 layout (Halloween theme!)

Navigation

Back pats Banners Textus Colors Gradients

HTML Tuts CP Tuts Ps Tuts PHP Tuts Misc. Tuts

chat with me

Affiliates

CSS shortcuts

This is not a proper tutorial, but only a couple of way to shorten up your stylesheet and make it look slicker.

The first is for the font tag; usually, the font is styled this way.

font-family: Arial;
font-size: 10px;
color: #000000;

To make it shorter, you can style it like this; nothing will change, but your stylesheet will become more professional.

font: 10px Arial;
color: #000000;

Next one is for the padding and margins - meaning thoes tags that define the internal and external spaces of a design; many style them like this.

padding-top: 2px;
padding-bottom: 2px;
padding-left: 0px;
padding-right: 0px;

margin-top: 2px;
margin-bottom: 2px;
margin-left: 0px;
margin-right: 2px;


They don't know there is a much faster and more professional-looking way to style.

padding: 2px 0px 2px 0px; --> in the order top right bottom left
margin: 2px 0px 2px 0px; --> same order as padding

Next is the tag for body background; usually, many style it like this.

background-color: #cccccc;
background-image: url('IMAGE-URL-HERE');
background-position: top center;

There is, however, a shortcut for this too; I don't actually use this as I prefer the old way - just for personal whims.

background: #cccccc url('IMAGE-URL-HERE') top center;

I shared these to help others, but in the end it all comes down to personal preferences; you can use them or not. Just, if you do please credit Skyrose.
© Sasha • 05.2014 // Hosted by BS // v28 Ana Beatriz Barros // Design :: FH // Photos :: MF // Powered by CN // Admin :: CP - CMS