This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-07-15 22:18:22

chanmanpartyman
Scratcher
Registered: 2011-05-30
Posts: 500+

Website Text Header Designs (CSS3)

Here I will store a lot of text styles I use that I myself think look cool with a certain background. Don't freak out, I generated these in Adobe Fireworks CS6  tongue . These look great on your website, and will be treated as the id attribute in any of the following tags (you can use any, but these are recommended):
<h1><h2><h3><h4><h5><h6>
<p>
<div>
<span>
<marquee>
They can be modified by adding an attribute to the tag, for example, I will use the "<div>" tag.
<div id="given-id-by-the-style-you-want">
_______________________________________________________________________________________________________________________
Style 1:
   Background: black
   Text color: green
   id to be used: green-glow
   code for your CSS document:

Code:

#green-glow {
    font-family:"Century Gothic";
    font-size:57px;
    color:rgb(0,255,0);
    text-align:center;
    text-shadow:0px 0px 7px rgba(0,255,0,0.5);
    -ms-filter:"progid:DXImageTransform.Microsoft.Glow(Color=#ff00ff00,Strength=7)";zoom:1;
    filter:progid:DXImageTransform.Microsoft.Glow(Color=#ff00ff00,Strength=7);
}

Example:
   http://i50.tinypic.com/4rvux5.png
_______________________________________________________________________________________________________________________
Style 2:
   Background: white
   Text color: black
   Text outline: white
   id to be used: outline-shadow
   code for your CSS document:

Code:

#outline-shadow {
    font-family:Impact;
    font-size:57px;
    font-weight:bold;
    text-align:center;
    -webkit-text-stroke:1px rgb(255,255,255);
    text-shadow:5px 5px 4px rgba(0,0,0,0.65);
    -ms-filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=5,OffY=5,Color=#a5000000,Positive=true)";zoom:1;
    filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=5,OffY=5,Color=#a5000000,Positive=true);
}

Example:
   http://i48.tinypic.com/10ydk51.png
______________________________________________________________________________________________________________________
Style 3:
   Background color: darker colors i.e. red, blue, purple, etc. not yellow, lime green, teal, etc.
   Text color: white
   id to be used: distant-outline
   code for CSS document:

Code:

#distant-outline {
font-family:Fixedsys;
font-size:42px;
font-weight:bold;
color:rgb(255,255,255);
text-align:center;
text-shadow:0px 0px 0px rgb(255,255,255);
-ms-filter:"progid:DXImageTransform.Microsoft.Glow(Color=#ffffffff,Strength=1)";zoom:1;
filter:progid:DXImageTransform.Microsoft.Glow(Color=#ffffffff,Strength=1);
}

Example:
   http://i50.tinypic.com/27y74wk.png
______________________________________________________________________________________________________________________
It takes awhile to do every one. I'll make a bunch more. Donations are kindly accepted.

Last edited by chanmanpartyman (2012-07-16 13:21:52)

Offline

 

#2 2012-07-15 22:26:39

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Website Text Header Designs (CSS3)

This looks cool!


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&amp;display=small

Offline

 

#3 2012-07-15 22:29:06

chanmanpartyman
Scratcher
Registered: 2011-05-30
Posts: 500+

Re: Website Text Header Designs (CSS3)

nathanprocks wrote:

This looks cool!

Thanks!

Offline

 

#4 2012-07-15 22:47:48

Jackieee
New Scratcher
Registered: 2012-07-05
Posts: 100+

Re: Website Text Header Designs (CSS3)

The outline on the second didn't work and the third just displayed white.  hmm

Offline

 

#5 2012-07-15 23:53:26

chanmanpartyman
Scratcher
Registered: 2011-05-30
Posts: 500+

Re: Website Text Header Designs (CSS3)

Jackieee wrote:

The outline on the second didn't work and the third just displayed white.  hmm

Fw glitched up or something, I'll fix it manually. Thanks for telling me  smile

Offline

 

#6 2012-07-16 04:23:54

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Website Text Header Designs (CSS3)

Looks like it'll only work in IE though -- hence the -ms CSS tag...

Offline

 

#7 2012-07-16 13:20:29

chanmanpartyman
Scratcher
Registered: 2011-05-30
Posts: 500+

Re: Website Text Header Designs (CSS3)

LS97 wrote:

Looks like it'll only work in IE though -- hence the -ms CSS tag...

Actually it is compatible with webkit browsers, firefox, opera, and IE.

Last edited by chanmanpartyman (2012-07-16 13:20:37)

Offline

 

Board footer