Forum Statistics

  • Forum Members: 4,246
  • Total Threads: 3,572
  • Total Posts: 1
There are 1 users currently browsing forums.

Partner Sites

Reply
Old 05-09-2009, 06:02 PM   #1 (permalink)
 
Status: Newbie
Join Date: May 2009
Posts: 1

Rep Power: 12 AGENTM2 is on a distinguished road



Default AGENTM2 Web design // Workflow Essentials // CSS

Essentials that should be in every css file
Essential css declarations you can use for your main css file. This sets styles across the board without needing to code it into individual html tags. Modify as needed. Enjoy.

/* Quick hex color reference */
/* palette
?????? - color 1
?????? - color 2
?????? - color 3
*/

/* Link style */
a {
color: blue;
text-decoration: underline;
}

/* Body style. Gets rid of the default page margin. */
body {
margin: 0px;
}

/* Set the font used in DIVs */
div {
font-size: 10px;
font-family: Helvetica;
}

/* Forms have a margin by default that can push your design out undesirably. This gets rid of it. */
form {
margin: 0px;
}

/* Get's rid of image borders */
img {
border: 0px;
}

/* Set the font used in form fields */
input {
margin: 0px;
font-size: 10px;
font-family: Helvetica;
}

/* Select style */
select {
margin: 0px;
border: 0px;
font-size: 10px;
font-family: Helvetica;
}

/* Gets rid of default cell spacing */
table {
border-spacing: 0px;
}

/* Set the font and removes default padding used in all TDs which usually is most of the site */
td {
font-size: 10px;
font-family: Helvetica;
padding: 0px;
}

/* Set the font and style for textareas */
textarea {
margin: 0px;
border: 0px;
background-color: #FFFFFF;
font-size: 10px;
font-family: Helvetica;
width: 100%;
}

/* List style */
ul {
margin: 0px;
text-indent: 0px;
}

/* List bullet style */
li {
list-style-type: square;
text-indent: 0px;
}

Miami web design and website development // AGENTM2
AGENTM2 is offline Add Infraction for AGENTM2   Reply With Quote


Reply

Bookmarks

Tags
None


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may post new threads
You may post replies
You may post attachments
You may edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Search Engine Optimization by vBSEO 3.5.0 RC2