Initializing...
Home
  • Home
  • Performance Analysis
    • Introduction
    • Features
    • Advantages
    • References
    • Gallery
    • Downloads
    • Installation
    • Buy
    • More...
  • Exercise Machines
    • Introduction
    • Features
    • Advantages
    • Exercises
    • References
    • Gallery
    • Buy
    • More...
  • Products
    • Downloads
    • Manuals
    • Price List
    • APAS 2020 - Standard Edition
    • APAS 2020 - Premium Edition
    • APAS 2020 - A/D Workstation
    • ACES 2020 - Multifunction Machine
    • ACES 2020 - Arm/Leg Machine
  • Library
    • Applications
    • Archives
    • Articles
    • Documentation
    • Downloads
    • Journals
    • Manuals
    • Presentations
    • Tutorials
    • Videos
    • More...
  • Company
    • About
    • Activities
    • Contact
    • Founder
    • History
    • Presentations
    • More...
  • Personal
    • Books
    • Wikipedia
    • Facebook
    • Youtube
      • Dream Factory
      • Personal
    • Flickr
      • Recent Additions
      • All Collections
      • All Albums
      • Tags
    • Photo Galleries
      • Recent Additions
      • Locations
      • Rated 5 Stars
      • Rated 4 Stars
      • Rated 3 Stars
    • Administration
    • More...
  • External links
    • Ariel Astro
    • More information
  • 70

    Computerized Exercise System

    Ariel Dynamics is proud to introduce the new generation of the revolutionary ACES (Ariel Computerized Exercise System), the most unique system and advanced exercise technology on the market today.
  • 69

    Performance Analysis System

    The Ariel Performance Analysis System (APAS) is a video-based 3D motion analysis system. APAS can capture video from multiple cameras simultaneously and perform a biomechanical analysis automatically.
  • 73

    Articles & Scientific Publications

    Ariel Dynamics and Dr. Gideon Ariel have been covered extensively in newspapers and magazines. We also published some of our scientific articles and system brochures. Enjoy!
  • 71

    Online Reference Library

    We helped athletes become world champions. We can help you improve your game too! Check the Ariel Library for more information.
  • 72

    Download our Applications

    All our Performance Analysis Applications can be downloaded from our website and evaluated free of charge. Our applications run on Microsoft Windows.
  • 74

    History of Biomechanics

    We are part of the history of modern biomechanics. Check out some of the media coverage over the years on ABC, CBS, CNN, ESPN, National Geographic, NBC and more. Shows are hosted by David Letterman, Tom Brokaw, and many others...

Online.

Report style

Page
Published on Saturday, May 24, 1997 by Gideon Ariel

Report style templates

Report Style in APAS/Wizard is defined in Cascading Style Sheets (CSS)

  • CSS stands for Cascading Style Sheets
  • Styles define how to display HTML elements
  • Styles are normally stored in Style Sheets
  • Styles were added to HTML 4.0 to solve a problem
  • External Style Sheets can save you a lot of work
  • External Style Sheets are stored in CSS files
  • Multiple style definitions will cascade into one

Styles Solve a Common Problem

HTML tags were originally designed to define the content of a document. They were supposed to say "This is a header", "This is a paragraph", "This is a table", by using tags like <h1>, <p>, <table>, and so on. The layout of the document was supposed to be taken care of by the browser, without using any formatting tags.

As the two major browsers - Netscape and Internet Explorer - continued to add new HTML tags and attributes (like the <font> tag and the color attribute) to the original HTML specification, it became more and more difficult to create Web sites where the content of HTML documents was clearly separated from the document's presentation layout.

To solve this problem, the World Wide Web Consortium (W3C) - the non profit, standard setting consortium responsible for standardizing HTML - created STYLES in addition to HTML 4.0. 

Both Netscape 4.0+ and Internet Explorer 4.0+ support Cascading Style Sheets.

Style Sheets Can Save a Lot of Work

Styles in HTML 4.0 define how HTML elements are displayed, just like the font tag and the color attribute in HTML 3.2. Styles are normally saved in files external to your HTML documents. External style sheets enable you to change the appearance and layout of all the pages in your Web, just by editing a single CSS document. If you have ever tried to change the font or color of all the headings in all your Web pages, you will understand how CSS can save you a lot of work.

CSS is a breakthrough in Web design because it allows developers to control the style and layout of multiple Web pages all at once. As a Web developer you can define a style for each HTML element and apply it to as many Web pages as you want. To make a global change, simply change the style, and all elements in the Web are updated automatically.

Multiple Styles Will Cascade Into One

Style Sheets allow style information to be specified in many ways. Styles can be specified inside a single HTML element, inside the <head> element of an HTML page, or in an external CSS file. Even multiple external Style Sheets can be referenced inside a single HTML document. 

Cascading Order

What style will be used when there is more than one style specified for an HTML element?

Generally speaking we can say that all the styles will "cascade" into a new "virtual" Style Sheet by the following rules, where number four has the highest priority:

  1. Browser default
  2. External Style Sheet
  3. Internal Style Sheet (inside the <head> tag)
  4. Inline Style (inside HTML element)

So, an inline style (inside an HTML element) has the highest priority, which means that it will override every style declared inside the <head> tag, in an external style sheet, and in a browser (a default value).

Syntax

The CSS syntax is made up of three parts: a selector, a property and a value:

selector {property: value}

The selector is normally the HTML element/tag you wish to define, the property is the attribute you wish to change, and each property can take a value. The property and value are separated by a colon and surrounded by curly braces:

body {color: black}

If  the value is multiple words, put quotes around the value:

p {font-family: "sans serif"}

Note: If you wish to specify more than one property, you should separate each property with a semi-colon. The example below shows how to define a center aligned paragraph, with a red text color:

p {text-align:center;color:red}

To make the style definitions more readable, you can describe one property on each line, like this:

p
{
text-align: center;
color: black;
font-family: arial
}

Grouping

You can group selectors. Separate each selector with a comma. In the example below we have grouped all the header elements. Each header element will be green:

h1,h2,h3,h4,h5,h6 
{
color: green
}

The class Selector

With the class selector you can define different styles for the same type of HTML element. Say that you would like to have two types of paragraphs in your document: one right-aligned paragraph, and one center-aligned paragraph. Here is how you can do it with styles:

p.right {text-align: right}
p.center {text-align: center}

You have to use the class attribute in your HTML document:

<p class="right">
This paragraph will be right-aligned.
</p>
<p class="center">
This paragraph will be center-aligned.
</p>

Note: Only one class attribute can be specified per HTML element! The example below is wrong:

<p class="right" class="center">
This is a paragraph.
</p>

You can also omit the tag name in the selector to define a style that will be used by all HTML elements that have a certain class. In the example below, all HTML elements with class="center" will be center-aligned:

.center {text-align: center}

In the code below both the h1 element and the p element have class="center". This means that both elements will follow the rules in the ".center" selector: 

<h1 class="center">
This heading will be center-aligned
</h1>
<p class="center">
This paragraph will also be center-aligned.
</p> 

The id Selector

The id selector is different from the class selector! While a class selector may apply to SEVERAL elements on a page, an id selector always applies to only ONE element.

An ID attribute must be unique within the document.

The style rule below will match a p element that has the id value "para1":

p#para1
{
text-align: center;
color: red
}

The style rule below will match the first element that has the id value "wer345":

*#wer345 {color: green}

The rule above will match this h1 element:

<h1 id="wer345">Some text</h1>

The style rule below will match a p element that has the id value "wer345":

p#wer345 {color: green}

The rule above will not match this h2 element:

<h2 id="wer345">Some text</h2>

CSS Comments

You can insert comments in CSS to explain your code, which can help you when you edit the source code at a later date. A comment will be ignored by the browser. A CSS comment begins with "/*", and ends with "*/", like this:

/* This is a comment */
p
{
text-align: center;
/* This is another comment */
color: black;
font-family: arial
}

Color names

On this page you will find a table of color names that are supported by newer versions of both Netscape and Internet Explorer.

Note: Color names are not supported by the W3C standards. If you want to write correct CSS you should use the Color HEX values.

Color Name Color HEX Color
AliceBlue  #F0F8FF  
AntiqueWhite  #FAEBD7  
Aqua  #00FFFF  
Aquamarine  #7FFFD4  
Azure  #F0FFFF  
Beige  #F5F5DC  
Bisque  #FFE4C4  
Black  #000000  
BlanchedAlmond  #FFEBCD  
Blue  #0000FF  
BlueViolet  #8A2BE2  
Brown  #A52A2A  
BurlyWood  #DEB887  
CadetBlue  #5F9EA0  
Chartreuse  #7FFF00  
Chocolate  #D2691E  
Coral  #FF7F50  
CornflowerBlue  #6495ED  
Cornsilk  #FFF8DC  
Crimson  #DC143C  
Cyan  #00FFFF  
DarkBlue  #00008B  
DarkCyan  #008B8B  
DarkGoldenRod  #B8860B  
DarkGray  #A9A9A9  
DarkGreen  #006400  
DarkKhaki  #BDB76B  
DarkMagenta  #8B008B  
DarkOliveGreen  #556B2F  
Darkorange  #FF8C00  
DarkOrchid  #9932CC  
DarkRed  #8B0000  
DarkSalmon  #E9967A  
DarkSeaGreen  #8FBC8F  
DarkSlateBlue  #483D8B  
DarkSlateGray  #2F4F4F  
DarkTurquoise  #00CED1  
DarkViolet  #9400D3  
DeepPink  #FF1493  
DeepSkyBlue  #00BFFF  
DimGray  #696969  
DodgerBlue  #1E90FF  
Feldspar  #D19275  
FireBrick  #B22222  
FloralWhite  #FFFAF0  
ForestGreen  #228B22  
Fuchsia  #FF00FF  
Gainsboro  #DCDCDC  
GhostWhite  #F8F8FF  
Gold  #FFD700  
GoldenRod  #DAA520  
Gray  #808080  
Green  #008000  
GreenYellow  #ADFF2F  
HoneyDew  #F0FFF0  
HotPink  #FF69B4  
IndianRed   #CD5C5C  
Indigo   #4B0082  
Ivory  #FFFFF0  
Khaki  #F0E68C  
Lavender  #E6E6FA  
LavenderBlush  #FFF0F5  
LawnGreen  #7CFC00  
LemonChiffon  #FFFACD  
LightBlue  #ADD8E6  
LightCoral  #F08080  
LightCyan  #E0FFFF  
LightGoldenRodYellow  #FAFAD2  
LightGrey  #D3D3D3  
LightGreen  #90EE90  
LightPink  #FFB6C1  
LightSalmon  #FFA07A  
LightSeaGreen  #20B2AA  
LightSkyBlue  #87CEFA  
LightSlateBlue  #8470FF  
LightSlateGray  #778899  
LightSteelBlue  #B0C4DE  
LightYellow  #FFFFE0  
Lime  #00FF00  
LimeGreen  #32CD32  
Linen  #FAF0E6  
Magenta  #FF00FF  
Maroon  #800000  
MediumAquaMarine  #66CDAA  
MediumBlue  #0000CD  
MediumOrchid  #BA55D3  
MediumPurple  #9370D8  
MediumSeaGreen  #3CB371  
MediumSlateBlue  #7B68EE  
MediumSpringGreen  #00FA9A  
MediumTurquoise  #48D1CC  
MediumVioletRed  #C71585  
MidnightBlue  #191970  
MintCream  #F5FFFA  
MistyRose  #FFE4E1  
Moccasin  #FFE4B5  
NavajoWhite  #FFDEAD  
Navy  #000080  
OldLace  #FDF5E6  
Olive  #808000  
OliveDrab  #6B8E23  
Orange  #FFA500  
OrangeRed  #FF4500  
Orchid  #DA70D6  
PaleGoldenRod  #EEE8AA  
PaleGreen  #98FB98  
PaleTurquoise  #AFEEEE  
PaleVioletRed  #D87093  
PapayaWhip  #FFEFD5  
PeachPuff  #FFDAB9  
Peru  #CD853F  
Pink  #FFC0CB  
Plum  #DDA0DD  
PowderBlue  #B0E0E6  
Purple  #800080  
Red  #FF0000  
RosyBrown  #BC8F8F  
RoyalBlue  #4169E1  
SaddleBrown  #8B4513  
Salmon  #FA8072  
SandyBrown  #F4A460  
SeaGreen  #2E8B57  
SeaShell  #FFF5EE  
Sienna  #A0522D  
Silver  #C0C0C0  
SkyBlue  #87CEEB  
SlateBlue  #6A5ACD  
SlateGray  #708090  
Snow  #FFFAFA  
SpringGreen  #00FF7F  
SteelBlue  #4682B4  
Tan  #D2B48C  
Teal  #008080  
Thistle  #D8BFD8  
Tomato  #FF6347  
Turquoise  #40E0D0  
Violet  #EE82EE  
VioletRed  #D02090  
Wheat  #F5DEB3  
White  #FFFFFF  
WhiteSmoke  #F5F5F5  
Yellow  #FFFF00  
YellowGreen  #9ACD32  
Reference: /wizard/manual/concepts/report.style.html
Downloads - more...

Downloads.

Report style

Home
APAS
  • Introduction
  • Features
  • Advantages
  • Gallery
  • Downloads
  • References
More...
ACES
  • Introduction
  • Features
  • Advantages
  • Exercises
  • References
  • Gallery
More...
Products
  • Downloads
  • Price List
  • Price List Academic
Library
  • Applications
  • Articles
  • Downloads
  • Journals
  • Presentations
  • Videos
More...
Company
  • About
  • Activities
  • Contact
  • Founder
  • History
  • Presentations
More...
Help
  • FAQ
  • KB
  • Tutorials
Personal
  • Books
  • Photo Galleries
Administration

Copyright © 1994 - 2023. Ariel Dynamics Inc. All rights reserved.
Generated on 3/25/2023 10:37:10 PM (PST) ADI/HQ/GBA/2023/ARIELCLOUD/v3.1.2022.1031.