/*planes.css - a style sheet for the planes.xml document*/

ad { 
   display: block; 
   margin-top: 15px; 
   color: blue;
}
year, make, model { 
   color: green; 
   font-size: 16pt;
}
/*use the 'content' CSS property to add the text 'Color value' 
to the resultant HTML page before the 'color' element is displayed */
color:before{
	content: "Color value:";
}
color {
   display: block; 
   margin-left: 20px; 
   font-size: 12pt;
}

description {
   display: block; 
   margin-left: 20px; 
   font-size: 12pt;
}
seller {
   display: block; 
   margin-left: 20px; 
   font-size: 12pt;
   font-weight:bold;
}
/*use 'attr' to display attributes of XML elements */
seller:after{
	display: block; 
	content:"Phone: "attr(phone);
}

location {
   display: block; 
   margin-left: 20px; 
}
city {
   font-size: 12pt;
}
state {
   font-size: 12pt;
}